/* Cadie Stores — shared storefront + admin styles (mobile-first) */
:root {
  --teal: #076d77;
  --teal-dark: #065a62;
  --dark: #0b3e43;
  --gold: #f2a900;
  --gold-dark: #d99a00;
  --mist: #f2f8f8;
  --ink: #1b2b2e;
  --muted: #5a8a8e;
  --line: #d9e8e8;
  --danger: #c0392b;
  --ok: #1e8a5a;
  --radius: 12px;
  --shadow: 0 2px 10px rgba(11, 62, 67, 0.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: var(--teal); text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* ≥16px prevents iOS zoom */
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
  border-color: var(--teal);
}
label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin: 10px 0 4px; }
.hidden { display: none !important; }

/* Layout */
.container { max-width: 1120px; margin: 0 auto; padding: 0 16px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--dark);
  color: #fff;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; gap: 10px;
  max-width: 1120px; margin: 0 auto; padding: 10px 16px;
}
.logo { display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 800; font-size: 18px; letter-spacing: 0.02em; }
.logo img { height: 34px; width: auto; }
.search-box { flex: 1; display: flex; gap: 6px; }
.search-box input { flex: 1; min-width: 0; }
.icon-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 0; border-radius: 10px; color: #fff;
  padding: 10px 12px; font-size: 18px; position: relative;
}
.admin-login-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 5px;
  min-height: 42px; padding: 8px 11px; border-radius: 10px;
  background: var(--gold); color: var(--dark); font-size: 13px; font-weight: 800;
  white-space: nowrap;
}
.admin-login-btn:active { transform: scale(.98); }
@media (max-width: 520px) {
  .header-inner { flex-wrap: wrap; gap: 7px; padding-left: 10px; padding-right: 10px; }
  .logo { margin-right: auto; }
  .logo img { width: 150px; max-width: 150px; height: auto; }
  .search-box { order: 4; flex: 0 0 100%; }
  .admin-login-btn { padding: 8px 9px; }
  .admin-login-btn span:first-child { display: none; }
  .icon-btn { padding-left: 10px; padding-right: 10px; }
}
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  background: var(--gold); color: var(--dark);
  font-size: 11px; font-weight: 800;
  min-width: 18px; height: 18px; border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
}
.cat-strip {
  background: #fff; border-top: 1px solid var(--line);
  overflow-x: auto; -webkit-overflow-scrolling: touch;
}
.cat-strip ul {
  display: flex; gap: 8px; list-style: none;
  margin: 0 auto; padding: 8px 16px; max-width: 1120px;
  white-space: nowrap;
}
.cat-strip a {
  display: inline-block; padding: 6px 14px;
  border-radius: 999px; border: 1px solid var(--line);
  color: var(--dark); font-size: 13px; font-weight: 600;
}
.cat-strip a.active { background: var(--teal); color: #fff; border-color: var(--teal); }

main { min-height: 60vh; padding: 16px 0 48px; }
.page-title { font-size: 22px; margin: 8px 0 14px; color: var(--dark); }
.hero {
  background: linear-gradient(135deg, var(--teal) 0%, var(--dark) 100%);
  color: #fff; border-radius: var(--radius);
  padding: 28px 20px; margin-bottom: 20px;
}
.hero h1 { margin: 0 0 6px; font-size: 26px; }
.hero p { margin: 0; opacity: 0.9; font-size: 15px; }
.hero .gold { color: var(--gold); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  border: 0; border-radius: 10px;
  padding: 12px 18px; font-size: 15px; font-weight: 700;
  background: var(--teal); color: #fff;
  transition: background 0.15s, transform 0.05s;
}
.btn:hover { background: var(--teal-dark); }
.btn:active { transform: scale(0.98); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: var(--gold-dark); }
.btn-outline { background: #fff; color: var(--teal); border: 1.5px solid var(--teal); }
.btn-outline:hover { background: var(--mist); }
.btn-danger { background: var(--danger); }
.btn-sm { padding: 7px 12px; font-size: 13px; border-radius: 8px; }
.btn-link {
  background: none; border: 0; color: var(--teal);
  padding: 4px 6px; font-size: 14px; font-weight: 600;
}

/* Product grid */
.grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (min-width: 640px) { .grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 960px) { .grid { grid-template-columns: repeat(4, 1fr); } }
.card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  transition: transform 0.12s;
}
.card:hover { transform: translateY(-2px); }
.card-img { aspect-ratio: 1/1; background: var(--mist); display: flex; align-items: center; justify-content: center; }
.card-img img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 10px 12px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.card-cat { font-size: 11px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.card-name { font-size: 14px; font-weight: 700; color: var(--dark); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.6em; }
.card-price { font-size: 15px; font-weight: 800; color: var(--teal); }
.card-price .was { color: var(--muted); text-decoration: line-through; font-weight: 500; font-size: 12px; margin-left: 6px; }
.promo-badge { display: inline-block; align-self: flex-start; padding: 4px 7px; border-radius: 6px; background: var(--gold); color: #2b2100; font-size: 10px; font-weight: 900; letter-spacing: .03em; }
.promo-badge-lg { margin: 4px 0 8px; padding: 7px 10px; font-size: 13px; }
.promo-banner {
  display: grid; grid-template-columns: 36% 1fr; overflow: hidden;
  margin: 0 0 18px; border-radius: var(--radius); color: #fff;
  background: linear-gradient(135deg, var(--dark), var(--teal)); box-shadow: var(--shadow);
}
.promo-banner img { width: 100%; height: 100%; min-height: 180px; object-fit: cover; background: #fff; }
.promo-copy { display: flex; flex-direction: column; justify-content: center; padding: 18px; }
.promo-copy h2 { margin: 5px 0 9px; color: #fff; font-size: clamp(18px, 4vw, 28px); line-height: 1.15; }
.promo-copy p { margin: 0 0 10px; font-size: 20px; font-weight: 900; color: var(--gold); }
.promo-kicker { font-size: 11px; font-weight: 900; letter-spacing: .12em; color: var(--gold); }
.promo-old { margin-left: 7px; font-size: 13px; font-weight: 500; color: #c5dddd; text-decoration: line-through; }
@media (max-width: 600px) {
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner img { min-height: 0; max-height: 230px; object-fit: contain; }
}
.badge-stock { font-size: 11px; color: var(--ok); font-weight: 600; }
.badge-stock.out { color: var(--danger); }
.card-actions { margin-top: 6px; }

/* Product detail */
.pd { display: grid; gap: 16px; }
@media (min-width: 760px) { .pd { grid-template-columns: 1fr 1fr; } }
.pd-img { background: #fff; border-radius: var(--radius); padding: 10px; box-shadow: var(--shadow); }
.pd-img img { border-radius: 8px; }
.pd-info h1 { font-size: 22px; margin: 0 0 6px; color: var(--dark); }
.pd-price { font-size: 24px; font-weight: 800; color: var(--teal); margin: 8px 0; }
.qty-row { display: flex; align-items: center; gap: 10px; margin: 12px 0; }
.qty-row button {
  width: 38px; height: 38px; border-radius: 9px;
  border: 1px solid var(--line); background: #fff; font-size: 18px; font-weight: 700;
}
.qty-row .qty { font-weight: 800; min-width: 32px; text-align: center; }
.pd-desc { color: var(--ink); font-size: 15px; white-space: pre-line; }
.pd-meta { font-size: 12px; color: var(--muted); margin-top: 14px; }

/* Cart + checkout */
.cart-line {
  display: flex; gap: 12px; align-items: center;
  background: #fff; border-radius: var(--radius);
  padding: 12px; margin-bottom: 10px; box-shadow: var(--shadow);
}
.cart-line img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; background: var(--mist); }
.cart-line .cl-info { flex: 1; min-width: 0; }
.cart-line .cl-name { font-weight: 700; font-size: 14px; color: var(--dark); }
.cart-line .cl-price { font-size: 13px; color: var(--teal); font-weight: 700; }
.cart-qty { display: inline-flex; align-items: center; gap: 8px; margin-top: 7px; }
.cart-qty button {
  width: 34px; height: 34px; padding: 0; border-radius: 9px;
  border: 1px solid var(--line); background: #fff; color: var(--dark);
  font-size: 20px; font-weight: 800; line-height: 1;
}
.cart-qty button:disabled { opacity: .4; cursor: not-allowed; }
.cart-qty span { min-width: 24px; text-align: center; font-size: 16px; font-weight: 800; color: var(--dark); }
.summary {
  background: #fff; border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow);
}
.summary .row { display: flex; justify-content: space-between; padding: 4px 0; font-size: 14px; }
.summary .row.total { font-size: 18px; font-weight: 800; color: var(--dark); border-top: 1px solid var(--line); margin-top: 6px; padding-top: 10px; }
.bank-details {
  margin-top: 14px; padding: 14px; border: 2px solid var(--teal);
  border-radius: 12px; background: #f6fbfb;
}
.bank-details h4 { margin: 0 0 9px; color: var(--dark); font-size: 16px; }
.bank-row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; font-size: 14px; }
.bank-row > span { color: var(--muted); }
.bank-row > strong { color: var(--dark); text-align: right; }
.bank-account-number { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 17px; letter-spacing: .04em; }
.bank-total { margin-top: 5px; padding-top: 9px; border-top: 1px solid var(--line); font-size: 16px; }
.bank-reference { margin: 9px 0; padding: 8px; background: #fff4d6; color: var(--dark); border-radius: 8px; font-size: 13px; font-weight: 700; }
.bank-details .btn { margin-top: 10px; }
.form-card { background: #fff; border-radius: var(--radius); padding: 16px; box-shadow: var(--shadow); margin-bottom: 14px; }
.form-card h3 { margin: 0 0 4px; font-size: 16px; color: var(--dark); }
.pay-option {
  border: 1.5px solid var(--line); border-radius: 10px;
  padding: 12px; margin: 8px 0; cursor: pointer;
  display: flex; gap: 10px; align-items: flex-start;
}
.pay-option.selected { border-color: var(--teal); background: var(--mist); }
.pay-option input { width: auto; margin-top: 3px; }

/* Notice / toast */
.notice { padding: 12px 14px; border-radius: 10px; font-size: 14px; margin: 10px 0; }
.notice.err { background: #fdecea; color: var(--danger); border: 1px solid #f5c6c0; }
.notice.ok { background: #e8f7ef; color: var(--ok); border: 1px solid #bfe8d2; }
.notice.warn { background: #fff7e0; color: #8a6d00; border: 1px solid #f2e2a8; }
.toast {
  position: fixed; left: 50%; bottom: 24px; transform: translateX(-50%);
  background: var(--dark); color: #fff; border-radius: 10px;
  padding: 12px 18px; font-size: 14px; z-index: 100;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: opacity 0.3s; max-width: 90vw;
}

/* Track */
.track-card { background: #fff; border-radius: var(--radius); padding: 18px; box-shadow: var(--shadow); margin-bottom: 12px; }
.timeline { border-left: 3px solid var(--line); margin-left: 8px; padding-left: 16px; }
.timeline .tl-item { position: relative; padding: 8px 0; }
.timeline .tl-item::before {
  content: ""; position: absolute; left: -23px; top: 14px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--line); border: 2px solid #fff;
}
.timeline .tl-item.current::before { background: var(--gold); }

/* Tables (admin) */
.tbl-wrap { overflow-x: auto; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
table.tbl { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 640px; }
.tbl th { text-align: left; padding: 10px 12px; background: var(--dark); color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.tbl td { padding: 10px 12px; border-bottom: 1px solid var(--line); vertical-align: top; }
.tbl tr:hover td { background: var(--mist); }
.pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.pill.PENDING { background: #fff3cd; color: #856404; }
.pill.CONFIRMED { background: #d1ecf1; color: #0c5460; }
.pill.FULFILLED { background: #d4edda; color: #155724; }
.pill.CANCELLED { background: #f8d7da; color: #721c24; }
.pill.admin { background: #e2d9f3; color: #48257e; }
.pill.order_manager { background: #d1ecf1; color: #0c5460; }

/* Admin layout */
.admin-topbar {
  background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 16px; position: sticky; top: 0; z-index: 50;
}
.admin-topbar .t { font-weight: 800; }
.admin-topbar .user { font-size: 12px; opacity: 0.85; }
.tabs { display: flex; gap: 6px; overflow-x: auto; background: #fff; border-bottom: 1px solid var(--line); padding: 8px 12px; }
.tabs button {
  border: 0; background: none; padding: 8px 14px;
  border-radius: 8px; font-weight: 700; font-size: 13px; color: var(--muted);
  white-space: nowrap;
}
.tabs button.active { background: var(--teal); color: #fff; }
.toolbar { display: flex; gap: 8px; flex-wrap: wrap; margin: 12px 0; align-items: center; }
.toolbar input, .toolbar select { width: auto; }
.spread { display: flex; justify-content: space-between; align-items: center; gap: 10px; flex-wrap: wrap; }
.grid-2 { display: grid; gap: 14px; }
@media (min-width: 800px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.grid-3 { display: grid; gap: 14px; }
@media (min-width: 900px) { .grid-3 { grid-template-columns: 2fr 1fr; } }
.muted { color: var(--muted); font-size: 13px; }
.mono { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 12px; }
footer.site-footer { background: var(--dark); color: #bcd8d9; font-size: 13px; padding: 24px 16px; text-align: center; }
.footer-whatsapp {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 10px; padding: 8px 13px; border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px; color: #fff; font-weight: 700;
}
.footer-whatsapp::before { content: '●'; color: #25D366; margin-right: 7px; font-size: 16px; }
.whatsapp-float {
  position: fixed !important; right: 16px !important; bottom: calc(18px + env(safe-area-inset-bottom)) !important; z-index: 120 !important;
  width: 52px !important; height: 52px !important; border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  background: #25D366 !important; color: #073d21 !important; font-weight: 900 !important; font-size: 13px !important;
  border: 3px solid #fff !important; box-shadow: 0 5px 18px rgba(0,0,0,.25) !important;
  padding: 0 !important; margin: 0 !important; line-height: 1 !important; text-decoration: none !important;
}
.whatsapp-float:active { transform: scale(.96); }
.spinner {
  width: 22px; height: 22px; border: 3px solid var(--line);
  border-top-color: var(--teal); border-radius: 50%;
  animation: spin 0.8s linear infinite; margin: 40px auto;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- testimonials ---------- */
.testimonials { margin-top: 2.2rem; padding: 1.4rem 0 0; border-top: 1px solid var(--line); }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 1rem; margin-top: 1rem; }
.testimonial { background: var(--mist, #f2f8f8); border: 1px solid var(--line); border-radius: 14px; padding: 1rem 1.1rem; margin: 0; }
.testimonial blockquote { margin: .4rem 0 .6rem; font-size: .95rem; line-height: 1.5; color: var(--ink, #233); }
.testimonial figcaption { display: flex; flex-wrap: wrap; align-items: center; gap: .35rem; font-size: .9rem; }
.stars { color: #F2A900; letter-spacing: 2px; font-size: 1.05rem; }
.badge-verified { background: #0B3E43; color: #fff; border-radius: 999px; padding: 2px 10px; font-size: .72rem; font-weight: 700; }
.avg-rating { display: flex; align-items: center; gap: .4rem; font-size: .95rem; }
.review-form-box { margin-top: 1.2rem; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.review-form-box summary { cursor: pointer; padding: .8rem 1rem; font-weight: 700; color: var(--teal, #076D77); }
.review-form { display: grid; gap: .6rem; padding: 0 1rem 1rem; }
.review-form input, .review-form textarea { width: 100%; box-sizing: border-box; padding: .6rem .7rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; }
.star-picker { display: flex; gap: .2rem; }
.star-btn { background: none; border: none; font-size: 1.7rem; color: #cfd8d8; cursor: pointer; padding: 0 .1rem; line-height: 1; }
.star-btn.on { color: #F2A900; }
.star-btn:focus-visible { outline: 2px solid var(--teal, #076D77); border-radius: 6px; }

/* 2026 natural Cadie design system — spacious, tactile and intentionally quiet. */
:root {
  --paper: #f6f3ec;
  --surface: #fffdf8;
  --surface-2: #ecefe8;
  --ink: #13231f;
  --muted: #64736d;
  --line: #d9ded6;
  --teal: #076d77;
  --teal-dark: #0b3e43;
  --dark: #102f2a;
  --gold: #f2a900;
  --mist: #eef4f1;
  --radius: 16px;
  --shadow: 0 18px 50px rgba(15, 47, 42, .08);
  --font: Inter, ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
}
html { scroll-behavior: smooth; }
body {
  background:
    linear-gradient(rgba(7,109,119,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7,109,119,.025) 1px, transparent 1px), var(--paper);
  background-size: 48px 48px;
  letter-spacing: -.01em;
}
.site-header { background: rgba(16,47,42,.97); color: #fff; box-shadow: none; border-bottom: 1px solid rgba(255,255,255,.1); backdrop-filter: blur(18px); }
.header-inner { max-width: 1240px; padding-top: 14px; padding-bottom: 14px; }
.logo { color: #fff; }
.search-box input { background: rgba(255,255,255,.96); border-color: transparent; border-radius: 999px; padding-inline: 18px; }
.admin-login-btn { background: var(--gold); border: 1px solid var(--gold); color: var(--dark); border-radius: 10px; }
.icon-btn { background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.16); border-radius: 10px; }
.cat-strip { background: rgba(255,253,248,.85); border-color: rgba(19,35,31,.08); }
.cat-strip a { border-color: transparent; padding: 8px 15px; }
.cat-strip a:hover { background: var(--surface-2); }
.cat-strip a.active { background: var(--dark); border-color: var(--dark); }
.container { max-width: 1240px; }
main { padding-top: 24px; }
.hero { position: relative; overflow: hidden; min-height: 460px; display: flex; flex-direction: column; align-items: flex-start; justify-content: center; background: var(--dark); border-radius: 22px; padding: clamp(36px,7vw,82px); margin-bottom: 28px; isolation: isolate; }
.hero::after { content: ""; position: absolute; width: min(58vw,620px); aspect-ratio: 1; right: -12%; top: -38%; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(242,169,0,.7), rgba(7,109,119,.45) 42%, transparent 70%); filter: blur(8px); z-index: -1; }
.hero-kicker { color: #f7c852; font-size: 12px; font-weight: 800; letter-spacing: .16em; margin-bottom: 24px; }
.hero h1 { max-width: 790px; font-size: clamp(40px,6vw,70px); line-height: 1.02; letter-spacing: -.055em; font-weight: 720; margin: 0 0 24px; }
.hero p { max-width: 620px; font-size: clamp(17px,2vw,21px); color: #c9d7d1; line-height: 1.55; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero-actions .btn { border-radius: 11px; padding: 14px 22px; }
.hero-secondary { background: transparent; border: 1px solid rgba(255,255,255,.4); }
.hero-secondary:hover { background: rgba(255,255,255,.1); }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 44px; color: #b7c8c0; font-size: 13px; }
.hero-trust span::before { content: "✓"; color: #f7c852; margin-right: 7px; }
.page-title { font-size: clamp(26px,3vw,38px); letter-spacing: -.04em; }
.card, .summary, .form-card, .track-card, .pd-img { background: var(--surface); border: 1px solid rgba(19,35,31,.08); box-shadow: none; }
.card { transition: transform .22s ease, box-shadow .22s ease; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-img { background: #edf1eb; }
.card-body { padding: 15px 16px 18px; gap: 7px; }
.card-name { font-size: 15px; line-height: 1.35; }
.btn { border-radius: 11px; transition: transform .18s ease, background .18s ease; }
.promo-banner { border-radius: 18px; box-shadow: none; background: #153e37; }
.testimonials { margin-top: 4rem; padding-top: 2.5rem; }
.testimonial { background: transparent; border: 0; border-top: 1px solid var(--line); border-radius: 0; padding: 1.3rem 0; }

/* ---------- installation booking CTA ---------- */
.install-cta { margin-top: 4rem; padding: clamp(1.6rem,4vw,3rem); border-radius: 20px; background: var(--surface); border: 1px solid rgba(19,35,31,.08); }
.install-cta .kicker { color: var(--teal); font-weight: 800; letter-spacing: .13em; font-size: 12px; margin-bottom: 10px; }
.install-cta h2 { margin: 0 0 12px; font-size: clamp(24px,3vw,38px); letter-spacing: -.04em; color: var(--ink); }
.install-cta p { color: var(--muted); max-width: 640px; line-height: 1.55; margin: 0; }
.install-cta .actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }
.install-cta .btn-book { background: var(--dark); color: #fff; border: 1px solid var(--dark); }
.install-cta .btn-book:hover { background: #0b2823; }
.install-cta .btn-book svg { vertical-align: -2px; margin-right: 6px; }
.install-form { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); margin-top: 26px; align-items: end; }
.install-form .field { display: grid; gap: 5px; }
.install-form label { font-size: 13px; font-weight: 700; color: var(--ink); }
.install-form input, .install-form textarea { background: var(--paper); border: 1px solid var(--line); border-radius: 11px; }
.install-form .field-full { grid-column: 1 / -1; }
.install-form .actions { display: flex; align-items: center; }
.install-note { font-size: 13px; color: var(--muted); margin-top: 12px; }
@media (max-width: 600px) { .install-cta { border-radius: 18px; } .install-cta h2 { font-size: 26px; } }
footer.site-footer { background: #102f2a; padding-block: 44px; }
@media (prefers-reduced-motion: no-preference) {
  .hero > * { animation: cadie-rise .55s ease both; }
  .hero > *:nth-child(2) { animation-delay: .06s; }
  .hero > *:nth-child(3) { animation-delay: .12s; }
  @keyframes cadie-rise { from { opacity: 0; transform: translateY(14px); } }
}
@media (max-width: 600px) {
  .hero { min-height: 430px; border-radius: 18px; padding: 34px 24px; }
  .hero h1 { font-size: clamp(38px,12vw,54px); }
  .hero-trust { gap: 10px 18px; margin-top: 30px; }
  .promo-banner { border-radius: 16px; }
}

/* ---------- unified sign-in + customer account ---------- */
.auth-topbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.auth-brand { display: inline-flex; }
.auth-brand img { display: block; height: auto; }
.auth-store-link { color: #fff; border-color: rgba(255,255,255,.5); }
.auth-page { max-width: 980px; padding-top: clamp(30px,7vw,80px); }
.auth-shell { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,440px); gap: clamp(28px,7vw,80px); align-items: center; }
.auth-intro h1 { font-size: clamp(44px,7vw,72px); letter-spacing: -.055em; margin: 0 0 18px; color: var(--dark); }
.auth-intro p { color: var(--muted); font-size: 18px; line-height: 1.6; max-width: 500px; }
.auth-card { padding: clamp(20px,4vw,32px); }
.auth-card h2 { font-size: 22px; margin: 24px 0 16px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 5px; border-radius: 12px; background: var(--mist); }
.auth-tabs button { min-height: 42px; border: 0; border-radius: 9px; background: transparent; color: var(--muted); font-weight: 800; cursor: pointer; }
.auth-tabs button.active { background: #fff; color: var(--dark); box-shadow: 0 1px 5px rgba(11,62,67,.12); }
.auth-switch { width: 100%; margin-top: 16px; padding: 10px; border: 0; background: transparent; color: var(--teal); font-weight: 800; cursor: pointer; }
.auth-hint { margin: -5px 0 12px; font-size: 12px; }
.account-heading { align-items: flex-start; margin-bottom: 32px; }
.account-heading .page-title { margin: 0 0 6px; }
.account-orders { display: grid; gap: 12px; }
.account-order { margin: 0; }
.account-order-total { margin-top: 14px; text-transform: capitalize; }
@media (max-width: 720px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-intro p { font-size: 16px; }
  .auth-intro h1 { font-size: 44px; }
  .auth-page { padding-top: 28px; }
}
