/* ==========================================================================
   Framelagao — stylesheet
   1. Tokens        2. Base        3. Layout        4. Header/Footer
   5. Components    6. Sections    7. Shop/Product  8. Cart/Checkout
   9. Responsive
   ========================================================================== */

/* 1. TOKENS ================================================================ */
:root {
  --brand:        #F97316;
  --brand-deep:   #E2540F;
  --brand-dark:   #9A3412;
  --brand-soft:   #FFF1E7;
  --brand-tint:   #FFF8F3;

  --ink:          #14110F;
  --ink-2:        #3F3833;
  --muted:        #6B6259;
  --line:         #ECE5DE;
  --line-strong:  #DCD2C8;

  --bg:           #FFFFFF;
  --surface:      #FAF7F4;
  --surface-2:    #F4EFE9;

  --green:        #16A34A;
  --star:         #F59E0B;

  --shadow-sm:  0 1px 2px rgba(20,17,15,.06), 0 2px 6px rgba(20,17,15,.05);
  --shadow:     0 2px 6px rgba(20,17,15,.05), 0 10px 28px rgba(20,17,15,.08);
  --shadow-lg:  0 4px 12px rgba(20,17,15,.06), 0 24px 56px rgba(20,17,15,.13);
  --shadow-brand: 0 8px 24px rgba(249,115,22,.28);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --wrap: 1200px;

  /* --- spacing system ------------------------------------------------------
     One gutter token drives the horizontal padding of EVERY page, because every
     page lays out inside .wrap. Change --gut and the whole site moves together.
     Mobile-first: 20px on the narrowest phone, easing up to 40px on desktop. */
  --gut: clamp(20px, 5vw, 40px);
  --sp-xs:  8px;
  --sp-sm:  14px;
  --sp-md:  22px;
  --sp-lg:  34px;
  --sp-xl:  clamp(34px, 5vw, 56px);
  --sp-sec: clamp(52px, 8vw, 104px);   /* vertical rhythm between sections */

  --f-head: 'Poppins', 'Segoe UI', system-ui, sans-serif;
  --f-body: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --f-script: 'Caveat', cursive;

  --ease: cubic-bezier(.22,.68,.31,1);
  --header-h: 60px;   /* mobile-first; scaled up in the min-width queries */
  --subnav-h: 44px;
}

/* 2. BASE ================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  /* clears the sticky header + sub-nav so #anchors never land under them */
  scroll-padding-top: calc(var(--header-h) + var(--subnav-h) + 14px);
}

body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { margin: 0 0 1rem; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* 3. LAYOUT ================================================================ */
/* The single container. Every page/section uses it, so left and right padding
   is identical across Home, Shop, About, Contact, FAQ, Checkout, Product — and
   anything added later. min-width:0 stops long children (selects, tables,
   unbroken strings) from forcing the container wider than the screen. */
.wrap {
  width: 100%; max-width: var(--wrap);
  margin-inline: auto; padding-inline: var(--gut);
  min-width: 0;
}
.wrap--narrow { max-width: 880px; }
.section { padding: var(--sp-sec) 0; }
.section--tint { background: var(--surface); }
.section--soft { background: var(--brand-tint); }

.sec-head { max-width: 660px; margin-bottom: clamp(32px, 5vw, 52px); }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { color: var(--muted); font-size: 1.05rem; margin: 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-head); font-size: .78rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--brand-deep); margin-bottom: 14px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }
.sec-head.center .eyebrow::after { content: ''; width: 26px; height: 2px; background: var(--brand); border-radius: 2px; }

.script { font-family: var(--f-script); color: var(--brand-deep); font-weight: 600; }

/* 4. HEADER =============================================================== */
/* --- announcement marquee ---
   Two identical message sets sit side by side inside .marquee-track; the track
   slides exactly -50%, so the second set lands where the first began and the
   loop is invisible. Transform-only animation => runs on the compositor. */
.topbar {
  background: linear-gradient(90deg, #0E0C0B, var(--ink) 45%, #0E0C0B);
  color: #fff;
  overflow: hidden;
}
.marquee {
  display: flex; overflow: hidden;
  /* soften both ends so messages fade in/out instead of getting chopped */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex; width: max-content;
  animation: marquee 45s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track { animation-play-state: paused; }
.marquee-set { display: flex; flex: none; }
.ann-item {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0 20px; min-height: 38px;
  font-family: var(--f-head); font-size: .78rem; font-weight: 500;
  letter-spacing: .045em; white-space: nowrap;
  color: rgba(255,255,255,.88);
}
.ann-item svg { width: 14px; height: 14px; color: var(--brand); flex: none; }
.ann-item::after {
  content: ''; width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.28); margin-left: 20px;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease);
}
.site-header.is-stuck { box-shadow: 0 6px 22px rgba(20,17,15,.07); }
.nav { display: flex; align-items: center; gap: 10px; min-height: var(--header-h); }

.brand { display: flex; align-items: center; flex: none; margin-right: auto; min-width: 0; }
.brand img { height: 29px; width: auto; }

/* --- sticky primary nav (mobile/tablet) ---
   Lives inside .site-header, so it sticks along with it. Scrolls sideways when
   the labels don't fit rather than wrapping to a second row. */
.subnav { border-top: 1px solid var(--line); }
.subnav-rail {
  display: flex; align-items: center; gap: 3px;
  min-height: var(--subnav-h);
  overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.subnav-rail::-webkit-scrollbar { display: none; }
/* JS adds .is-scrollable only when the links genuinely overflow, so the fade
   never dims the last item on screens where everything already fits. */
.subnav.is-scrollable .subnav-rail {
  -webkit-mask-image: linear-gradient(90deg, #000 84%, transparent);
          mask-image: linear-gradient(90deg, #000 84%, transparent);
}
.subnav-rail a {
  flex: none; padding: 7px 11px; border-radius: 999px;
  font-family: var(--f-head); font-weight: 500; font-size: .83rem;
  color: var(--muted); white-space: nowrap;
  transition: color .2s, background .2s;
}
.subnav-rail a:hover { color: var(--brand-deep); background: var(--brand-soft); }
.subnav-rail a.active { background: var(--ink); color: #fff; font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 9px 14px; border-radius: 999px;
  font-family: var(--f-head); font-weight: 500; font-size: .94rem;
  color: var(--ink-2); transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--brand-deep); background: var(--brand-soft); }
.nav-links a.active { color: var(--brand-deep); background: var(--brand-soft); font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 5px; flex: none; }

/* Header CTA — deliberately smaller than the logo so the logo stays the
   primary mark. Gradient + layered shadow keep it feeling premium at this size. */
.nav-order {
  padding: 9px 14px;
  font-size: .79rem; font-weight: 600; letter-spacing: .002em;
  border: 0;
  background-image: linear-gradient(135deg, #FB9048, var(--brand) 42%, var(--brand-deep));
  box-shadow: 0 1px 2px rgba(154,52,18,.2), 0 5px 14px rgba(226,84,15,.22);
}
.nav-order:hover {
  background-image: linear-gradient(135deg, var(--brand), var(--brand-deep) 60%, var(--brand-dark));
  box-shadow: 0 2px 4px rgba(154,52,18,.22), 0 9px 22px rgba(226,84,15,.3);
  transform: translateY(-1px);
}
.nav-order:active { transform: translateY(0) scale(.975); }
.nav-order svg { width: 15px; height: 15px; }
.nav-order-s { display: none; }   /* short label, swapped in on narrow phones */

.icon-btn {
  position: relative;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink); transition: background .2s, color .2s;
}
.icon-btn:hover { background: var(--surface-2); color: var(--brand-deep); }
.icon-btn svg { width: 20px; height: 20px; }

.cart-count {
  position: absolute; top: 0; right: -1px;
  min-width: 19px; height: 19px; padding: 0 5px;
  background: var(--brand); color: #fff;
  font-family: var(--f-head); font-size: .68rem; font-weight: 700; line-height: 19px;
  text-align: center; border-radius: 999px;
  border: 2px solid #fff;
  transform: scale(0); transition: transform .25s var(--ease);
}
.cart-count.show { transform: scale(1); }

.burger { display: none; }

/* mobile drawer */
.drawer {
  position: fixed; inset: 0; z-index: 90;
  visibility: hidden; pointer-events: none;
}
.drawer.open { visibility: visible; pointer-events: auto; }
.drawer-veil {
  position: absolute; inset: 0; background: rgba(20,17,15,.5);
  opacity: 0; transition: opacity .3s var(--ease);
}
.drawer.open .drawer-veil { opacity: 1; }
.drawer-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: min(340px, 86vw); background: #fff;
  padding: 22px; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .35s var(--ease);
  overflow-y: auto;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer-top img { height: 32px; }
.drawer-label {
  font-family: var(--f-head); font-size: .72rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 8px; padding-inline: 14px;
}
.drawer-links { display: flex; flex-direction: column; gap: 2px; }
.drawer-links a {
  padding: 13px 14px; border-radius: var(--r-sm);
  font-family: var(--f-head); font-weight: 500; font-size: 1.02rem;
}
.drawer-links a:hover, .drawer-links a.active { background: var(--brand-soft); color: var(--brand-deep); }
.drawer-foot { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line); }
.drawer-foot .btn { width: 100%; }
.drawer-foot .tel { display: block; margin-top: 14px; text-align: center; color: var(--muted); font-size: .9rem; }

/* 5. COMPONENTS =========================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 26px; border-radius: 999px;
  font-family: var(--f-head); font-weight: 600; font-size: .96rem;
  white-space: nowrap; cursor: pointer; border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .25s var(--ease),
              background .2s, color .2s, border-color .2s;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-brand); }
.btn-primary:hover { background: var(--brand-deep); box-shadow: 0 10px 30px rgba(226,84,15,.36); transform: translateY(-2px); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: #000; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--brand); color: var(--brand-deep); transform: translateY(-2px); }

.btn-wa { background: #25D366; color: #fff; box-shadow: 0 8px 22px rgba(37,211,102,.3); }
.btn-wa:hover { background: #1EBE5A; transform: translateY(-2px); }

.btn-lg { padding: 17px 34px; font-size: 1.03rem; }
.btn-sm { padding: 10px 18px; font-size: .87rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; box-shadow: none; }

.pill {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand-dark);
  font-family: var(--f-head); font-size: .8rem; font-weight: 600;
}
.pill svg { width: 14px; height: 14px; }

.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 16px; height: 16px; }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  padding: 6px 13px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: var(--f-head); font-size: .7rem; font-weight: 600;
  letter-spacing: .05em; text-transform: uppercase;
}
.badge.brand { background: var(--brand); }

/* toast */
.toast-host {
  position: fixed; left: 50%; bottom: 26px; z-index: 200;
  transform: translateX(-50%);
  display: flex; flex-direction: column; gap: 10px; align-items: center;
  pointer-events: none; width: calc(100% - 32px); max-width: 420px;
}
.toast {
  display: flex; align-items: center; gap: 11px;
  padding: 13px 20px; border-radius: 999px;
  background: var(--ink); color: #fff; font-size: .92rem; font-weight: 500;
  box-shadow: var(--shadow-lg);
  animation: toastIn .35s var(--ease);
}
.toast svg { width: 18px; height: 18px; color: #4ADE80; flex: none; }
.toast.out { animation: toastOut .3s var(--ease) forwards; }
@keyframes toastIn  { from { opacity: 0; transform: translateY(16px) scale(.96); } }
@keyframes toastOut { to   { opacity: 0; transform: translateY(10px) scale(.97); } }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* floating whatsapp */
.wa-float {
  position: fixed; right: 18px; bottom: 18px; z-index: 70;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.42);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* 6. SECTIONS ============================================================= */

/* --- hero --- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -8%, rgba(249,115,22,.16), transparent 62%),
    radial-gradient(800px 480px at 4% 108%, rgba(249,115,22,.09), transparent 60%),
    var(--brand-tint);
  padding: clamp(44px, 6.5vw, 84px) 0 clamp(56px, 7vw, 96px);
}
.hero-grid {
  display: grid; grid-template-columns: 1.02fr .98fr;
  gap: clamp(32px, 5vw, 68px); align-items: center;
}
.hero h1 { margin-bottom: 10px; }
.hero h1 em { font-style: normal; color: var(--brand-deep); }
.hero .script { font-size: clamp(1.6rem, 3.4vw, 2.3rem); display: block; margin-bottom: 18px; }
.hero-lead { font-size: 1.08rem; color: var(--ink-2); max-width: 50ch; margin-bottom: 26px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }

.hero-proof { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.hero-proof .num { font-family: var(--f-head); font-size: 1.5rem; font-weight: 700; color: var(--ink); line-height: 1; }
.hero-proof .lbl { font-size: .82rem; color: var(--muted); }
.hero-proof .sep { width: 1px; height: 34px; background: var(--line-strong); }

.hero-art { position: relative; }
.hero-art .shot {
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); background: #fff;
  transform: rotate(-1.6deg);
}
.hero-art .shot img { width: 100%; height: auto; }
.hero-art .chip {
  position: absolute; display: flex; align-items: center; gap: 10px;
  padding: 11px 17px; border-radius: 999px;
  background: #fff; box-shadow: var(--shadow);
  font-family: var(--f-head); font-size: .85rem; font-weight: 600; color: var(--ink);
  animation: float 5s ease-in-out infinite;
}
.hero-art .chip svg { width: 17px; height: 17px; color: var(--brand); }
.hero-art .chip-1 { top: 8%; left: -22px; }
.hero-art .chip-2 { bottom: 12%; right: -18px; animation-delay: -2.5s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* --- feature / trust cards ---
   grid + stretch gives every card an identical height and identical padding,
   whatever the label length. */
.trust { background: var(--ink); color: #fff; padding: clamp(22px, 3.4vw, 34px) 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px; align-items: stretch;
}
.trust-item {
  display: flex; align-items: center; gap: 12px; height: 100%;
  padding: 14px 15px; border-radius: var(--r);
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.085);
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}
.trust-item:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,.075);
  border-color: rgba(249,115,22,.42);
}
.trust-ico {
  width: 40px; height: 40px; border-radius: 11px; flex: none;
  display: grid; place-items: center;
  background: rgba(249,115,22,.14);
}
.trust-ico svg { width: 21px; height: 21px; color: var(--brand); }
.trust-txt { min-width: 0; }
.trust-item strong {
  display: block; font-family: var(--f-head);
  font-size: .92rem; font-weight: 600; line-height: 1.3; color: #fff;
}
.trust-item .trust-txt span {
  display: block; font-size: .78rem; line-height: 1.4;
  color: rgba(255,255,255,.6); margin-top: 1px;
}

/* --- occasions --- */
.occ-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.occ-card {
  display: flex; align-items: center; gap: 16px;
  padding: 22px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.occ-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.occ-ico {
  width: 52px; height: 52px; border-radius: var(--r-sm); flex: none;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-deep);
}
.occ-ico svg { width: 25px; height: 25px; }
.occ-card h3 { font-size: 1.02rem; margin: 0 0 2px; }
.occ-card p { font-size: .85rem; color: var(--muted); margin: 0; }

/* --- steps --- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 34px); position: relative; }
.step { text-align: center; position: relative; }
.step-n {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  display: grid; place-items: center;
  background: #fff; border: 2px solid var(--brand);
  font-family: var(--f-head); font-size: 1.35rem; font-weight: 700; color: var(--brand-deep);
  box-shadow: 0 0 0 8px var(--brand-tint);
}
.step-n svg { width: 27px; height: 27px; }
.step h3 { font-size: 1.12rem; }
.step p { color: var(--muted); font-size: .94rem; margin: 0; }

/* --- price chart --- */
.price-wrap { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(20px, 3vw, 32px); align-items: start; }
.price-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px); box-shadow: var(--shadow-sm);
}
.price-card h3 { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
.price-card h3 svg { width: 22px; height: 22px; color: var(--brand); }
.price-card .note { font-size: .87rem; color: var(--muted); margin-bottom: 20px; }
.price-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 20px; }
.price-card--crystal .price-list { grid-template-columns: 1fr; }
.price-row {
  display: flex; align-items: baseline; gap: 8px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.price-row .sz { font-family: var(--f-head); font-weight: 600; color: var(--ink); font-size: .95rem; }
.price-row .dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-4px); }
.price-row .amt { font-family: var(--f-head); font-weight: 700; color: var(--brand-deep); }
.price-foot { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 10px; }

/* --- structure --- */
.struct { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 60px); align-items: center; }
.struct-img { border-radius: var(--r-lg); overflow: hidden; background: #fff; box-shadow: var(--shadow); }
.struct-img img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.struct-list { display: grid; gap: 14px; margin-top: 24px; }
.struct-list li { display: flex; gap: 13px; align-items: flex-start; }
.struct-list .n {
  width: 27px; height: 27px; border-radius: 50%; flex: none; margin-top: 2px;
  display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-family: var(--f-head); font-size: .78rem; font-weight: 700;
}
.struct-list strong { display: block; font-family: var(--f-head); color: var(--ink); font-size: .98rem; }
.struct-list span { font-size: .9rem; color: var(--muted); }

/* --- reviews --- */
.rev-rail {
  display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 1fr);
  gap: 18px; overflow-x: auto; padding-bottom: 14px;
  scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.rev-rail::-webkit-scrollbar { height: 6px; }
.rev-rail::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 99px; }
.rev-card {
  scroll-snap-align: start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
}
.rev-card p { font-size: .95rem; color: var(--ink-2); margin: 0; flex: 1; }
.rev-who { display: flex; align-items: center; gap: 11px; }
.rev-av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center;
  background: var(--brand-soft); color: var(--brand-dark);
  font-family: var(--f-head); font-weight: 700; font-size: .95rem;
}
.rev-who strong { display: block; font-family: var(--f-head); font-size: .92rem; color: var(--ink); }
.rev-who span { font-size: .8rem; color: var(--muted); }
.rev-verified { margin-left: auto; display: inline-flex; align-items: center; gap: 5px; font-size: .76rem; color: var(--green); font-weight: 600; }
.rev-verified svg { width: 14px; height: 14px; }

/* --- faq --- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item {
  border: 1px solid var(--line); border-radius: var(--r);
  background: #fff; margin-bottom: 10px;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-item.open { border-color: rgba(249,115,22,.35); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 17px 18px; text-align: left;
  font-family: var(--f-head); font-weight: 600; font-size: .98rem; line-height: 1.4;
  color: var(--ink);
}
.faq-q .ic {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-deep);
  transition: transform .32s var(--ease), background .2s, color .2s;
}
.faq-q .ic svg { width: 14px; height: 14px; }
.faq-item.open .faq-q .ic { transform: rotate(135deg); background: var(--brand); color: #fff; }
/* JS animates max-height; opacity/translate ride along for a softer reveal */
.faq-a {
  max-height: 0; overflow: hidden;
  opacity: 0; transform: translateY(-4px);
  transition: max-height .4s var(--ease), opacity .3s var(--ease), transform .35s var(--ease);
}
.faq-item.open .faq-a { opacity: 1; transform: none; }
.faq-a p { padding: 0 18px 18px; color: var(--muted); font-size: .93rem; margin: 0; }

/* --- cta band --- */
.cta-band {
  background: linear-gradient(120deg, var(--brand-dark), var(--brand-deep) 55%, var(--brand));
  color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 5vw, 58px);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 26px;
  box-shadow: var(--shadow-lg);
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,.9); margin: 0; }
.cta-band .btn-ghost { background: #fff; border-color: #fff; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* 7. SHOP / PRODUCT ======================================================= */
.page-head {
  background: var(--surface); border-bottom: 1px solid var(--line);
  padding: clamp(30px, 4.5vw, 52px) 0;
}
.crumbs { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--muted); margin-bottom: 12px; }
.crumbs a:hover { color: var(--brand-deep); }
.crumbs svg { width: 13px; height: 13px; opacity: .55; }
.page-head h1 { margin-bottom: 6px; }
.page-head p { color: var(--muted); margin: 0; max-width: 62ch; }

/* Category filters — compact pills on a single sideways-scrolling row so they
   never stack into two/three tall rows on a phone. */
.filters {
  display: flex; gap: 7px; margin-bottom: var(--sp-md);
  overflow-x: auto; overscroll-behavior-x: contain;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  /* bleed to the screen edge so the row reads as scrollable, but keep the
     first/last chip aligned to the container gutter */
  margin-inline: calc(var(--gut) * -1); padding-inline: var(--gut);
  scroll-padding-inline: var(--gut);
}
.filters::-webkit-scrollbar { display: none; }
.chip {
  flex: none;
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--line-strong);
  background: #fff; font-family: var(--f-head); font-size: .83rem; font-weight: 500;
  color: var(--ink-2); white-space: nowrap;
  transition: background .2s, border-color .2s, color .2s, box-shadow .2s;
}
.chip:hover { border-color: var(--brand); color: var(--brand-deep); }
.chip.active {
  background: var(--ink); border-color: var(--ink); color: #fff; font-weight: 600;
  box-shadow: 0 3px 10px rgba(20,17,15,.18);
}

.p-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: clamp(16px, 2.4vw, 26px); }

.p-card {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.p-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.p-media { position: relative; aspect-ratio: 1/1; background: var(--surface); overflow: hidden; }
.p-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .35s; }
.p-media img.alt { position: absolute; inset: 0; opacity: 0; }
.p-card:hover .p-media img.main { opacity: 0; }
.p-card:hover .p-media img.alt { opacity: 1; }
.p-card:hover .p-media img { transform: scale(1.05); }

.p-body { padding: 18px 20px 20px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.p-cat { font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--brand-deep); font-weight: 600; font-family: var(--f-head); }
.p-body h3 { font-size: 1.06rem; margin: 0; }
.p-body .p-short { font-size: .88rem; color: var(--muted); margin: 0; }
.p-price { margin-top: auto; padding-top: 10px; display: flex; align-items: baseline; gap: 7px; }
.p-price .from { font-size: .8rem; color: var(--muted); }
.p-price .amt { font-family: var(--f-head); font-size: 1.35rem; font-weight: 700; color: var(--ink); }
.p-actions { display: flex; gap: 8px; margin-top: 14px; }
/* min-width:0 lets the pills shrink inside a narrow card instead of overflowing it */
.p-actions .btn { flex: 1; min-width: 0; }

/* product detail */
.pdp { display: grid; grid-template-columns: 1.06fr .94fr; gap: clamp(28px, 4.5vw, 56px); align-items: start; }
.gal-main {
  position: relative; aspect-ratio: 1/1; border-radius: var(--r-lg); overflow: hidden;
  background: var(--surface); border: 1px solid var(--line);
}
.gal-main img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.gal-thumbs button {
  width: 74px; height: 74px; border-radius: var(--r-sm); overflow: hidden;
  border: 2px solid var(--line); background: var(--surface); transition: border-color .2s, transform .2s;
}
.gal-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gal-thumbs button:hover { transform: translateY(-2px); }
.gal-thumbs button.active { border-color: var(--brand); }

.pdp-info h1 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 8px; }
.pdp-rating { display: flex; align-items: center; gap: 9px; font-size: .87rem; color: var(--muted); margin-bottom: 16px; }
.pdp-price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.pdp-price .amt { font-family: var(--f-head); font-size: 2.1rem; font-weight: 700; color: var(--ink); }
.pdp-price .mrp { font-size: 1.05rem; color: var(--muted); text-decoration: line-through; }
.pdp-price .off { font-size: .82rem; font-weight: 700; color: var(--green); font-family: var(--f-head); }
.pdp-tax { font-size: .82rem; color: var(--muted); margin-bottom: 22px; }

.opt-block { margin-bottom: 22px; }
.opt-label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: .92rem; color: var(--ink); margin-bottom: 10px;
}
.opt-label .hint { font-weight: 400; font-size: .82rem; color: var(--muted); }
.size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.size-btn {
  padding: 10px 15px; border-radius: var(--r-sm); border: 1.5px solid var(--line-strong);
  background: #fff; font-family: var(--f-head); font-size: .88rem; font-weight: 600; color: var(--ink-2);
  display: flex; flex-direction: column; align-items: center; gap: 1px; min-width: 78px;
  transition: all .18s var(--ease);
}
.size-btn small { font-weight: 500; font-size: .76rem; color: var(--muted); }
.size-btn:hover { border-color: var(--brand); }
.size-btn.active { border-color: var(--brand); background: var(--brand-soft); color: var(--brand-dark); }
.size-btn.active small { color: var(--brand-deep); }

.qty { display: inline-flex; align-items: center; border: 1.5px solid var(--line-strong); border-radius: 999px; overflow: hidden; }
.qty button { width: 42px; height: 44px; display: grid; place-items: center; color: var(--ink); transition: background .2s; }
.qty button:hover { background: var(--surface-2); }
.qty button svg { width: 16px; height: 16px; }
.qty input {
  width: 46px; height: 44px; border: 0; text-align: center;
  font-family: var(--f-head); font-weight: 700; background: transparent;
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-buy { display: flex; gap: 10px; margin: 24px 0 18px; }
.pdp-buy .btn { flex: 1; }

.photo-note {
  display: flex; gap: 12px; padding: 15px 17px; border-radius: var(--r);
  background: var(--brand-tint); border: 1px solid #FBD9BF; margin-bottom: 20px;
}
.photo-note svg { width: 20px; height: 20px; color: var(--brand-deep); flex: none; margin-top: 2px; }
.photo-note p { margin: 0; font-size: .88rem; color: var(--ink-2); }
.photo-note strong { color: var(--ink); }

.pdp-perks { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 18px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 20px; }
.pdp-perks li { display: flex; align-items: center; gap: 10px; font-size: .87rem; color: var(--ink-2); }
.pdp-perks svg { width: 19px; height: 19px; color: var(--brand); flex: none; }

.feat-list { display: grid; gap: 9px; }
.feat-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; }
.feat-list svg { width: 18px; height: 18px; color: var(--green); flex: none; margin-top: 3px; }

/* 8. CART / CHECKOUT ====================================================== */
.cart-layout {
  display: grid; grid-template-columns: 1.5fr .95fr;
  gap: clamp(22px, 3.5vw, 40px); align-items: start; min-width: 0;
}
.cart-layout > * { min-width: 0; }

.line-item {
  display: grid; grid-template-columns: 96px 1fr auto; gap: 16px; align-items: center;
  padding: 18px 0; border-bottom: 1px solid var(--line);
  min-width: 0;
}
.line-item > * { min-width: 0; }
/* long product names must wrap, not push the row wide */
.li-info h4, .li-meta { overflow-wrap: anywhere; }
.line-item:first-child { padding-top: 0; }
.li-img { width: 96px; height: 96px; border-radius: var(--r-sm); overflow: hidden; background: var(--surface); border: 1px solid var(--line); }
.li-img img { width: 100%; height: 100%; object-fit: cover; }
.li-info h4 { font-family: var(--f-head); font-size: 1rem; margin: 0 0 3px; color: var(--ink); }
.li-meta { font-size: .84rem; color: var(--muted); margin: 0 0 9px; }
.li-tools { display: flex; align-items: center; gap: 14px; }
.li-rm { font-size: .84rem; color: var(--muted); display: inline-flex; align-items: center; gap: 5px; transition: color .2s; }
.li-rm:hover { color: #DC2626; }
.li-rm svg { width: 14px; height: 14px; }
.li-price { text-align: right; font-family: var(--f-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); }

.summary {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(20px, 3vw, 28px); position: sticky; top: calc(var(--header-h) + 18px);
}
.summary h3 { font-size: 1.15rem; margin-bottom: 18px; }
.sum-row { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; font-size: .94rem; }
.sum-row .lbl { color: var(--muted); }
.sum-row.total {
  margin-top: 10px; padding-top: 16px; border-top: 1px solid var(--line-strong);
  font-family: var(--f-head); font-size: 1.22rem; font-weight: 700; color: var(--ink);
}
.sum-row .free { color: var(--green); font-weight: 600; }
.ship-bar { margin: 14px 0 4px; }
.ship-bar .track { height: 6px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.ship-bar .fill { height: 100%; background: var(--brand); border-radius: 99px; transition: width .5s var(--ease); }
.ship-bar p { font-size: .82rem; color: var(--muted); margin: 8px 0 0; }
.summary .btn { margin-top: 18px; }
.sum-trust { display: grid; gap: 8px; margin-top: 16px; }
.sum-trust li { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--muted); }
.sum-trust svg { width: 15px; height: 15px; color: var(--green); flex: none; }

.empty { text-align: center; padding: clamp(40px, 7vw, 80px) 20px; }
.empty svg { width: 76px; height: 76px; color: var(--line-strong); margin: 0 auto 20px; }
.empty h2 { margin-bottom: 8px; }
.empty p { color: var(--muted); margin-bottom: 24px; }

/* forms */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: clamp(18px, 3vw, 32px); margin-bottom: 18px; min-width: 0;
}
.form-card h3 { display: flex; align-items: center; gap: 11px; font-size: 1.12rem; margin-bottom: 20px; }
.form-card h3 .stepn {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--brand); color: #fff;
  font-size: .82rem; font-weight: 700;
}
/* min-width:0 on the grid items is what stops the checkout blowing out: a
   <select> is sized by its widest <option> ("Dadra and Nagar Haveli and Daman
   and Diu"), and a grid child defaults to min-width:auto, so that intrinsic
   width was forcing the whole form — and the page — wider than the screen. */
.f-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.f-grid > * { min-width: 0; }
.field { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--f-head); font-size: .85rem; font-weight: 600; color: var(--ink); }
.field label .req { color: #DC2626; }
.field input, .field select, .field textarea {
  width: 100%; min-width: 0; max-width: 100%;
  padding: 12px 14px; border-radius: var(--r-sm);
  border: 1.5px solid var(--line-strong); background: #fff;
  font-size: 16px;   /* <16px makes iOS Safari zoom the page on focus */
  transition: border-color .2s, box-shadow .2s;
}
.field select { text-overflow: ellipsis; }
.field textarea { resize: vertical; min-height: 88px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand); box-shadow: 0 0 0 3px rgba(249,115,22,.15);
}
.field .err { font-size: .8rem; color: #DC2626; display: none; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #DC2626; }
.field.invalid .err { display: block; }
.field .help { font-size: .79rem; color: var(--muted); }

.pay-opt {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: flex-start;
  padding: 15px; border: 1.5px solid var(--line-strong); border-radius: var(--r);
  cursor: pointer; transition: border-color .2s, background .2s;
  min-width: 0;
}
.pay-opt:has(input:checked) { border-color: var(--brand); background: var(--brand-tint); }
.pay-opt input { margin-top: 3px; accent-color: var(--brand); width: 18px; height: 18px; flex: none; }
/* the label text is the flexible column; the nowrap tag must not stretch the row */
.pay-opt > span:not(.tag) { flex: 1 1 140px; min-width: 0; }
.pay-opt strong { display: block; font-family: var(--f-head); font-size: .96rem; color: var(--ink); }
.pay-opt span { font-size: .85rem; color: var(--muted); }
.pay-opt.disabled { opacity: .55; cursor: not-allowed; background: var(--surface); }
.pay-opt .tag {
  margin-left: auto; flex: none; align-self: flex-start;
  padding: 3px 10px; border-radius: 999px;
  background: var(--surface-2); color: var(--muted); font-size: .72rem; font-weight: 600; white-space: nowrap;
}
.pay-opt .tag.ok { background: #DCFCE7; color: #15803D; }

/* order success */
.success { text-align: center; max-width: 620px; margin-inline: auto; padding: clamp(36px, 6vw, 70px) 0; }
.success-ico {
  width: 88px; height: 88px; border-radius: 50%; margin: 0 auto 24px;
  display: grid; place-items: center; background: #DCFCE7; color: var(--green);
  animation: pop .55s var(--ease);
}
.success-ico svg { width: 44px; height: 44px; }
@keyframes pop { 0% { transform: scale(.4); opacity: 0; } 60% { transform: scale(1.08); } 100% { transform: scale(1); opacity: 1; } }
.order-box {
  background: var(--surface); border: 1px dashed var(--line-strong); border-radius: var(--r);
  padding: 20px; margin: 24px 0; text-align: left;
}
.order-box .oid { font-family: var(--f-head); font-size: 1.3rem; font-weight: 700; color: var(--brand-deep); }
.next-steps { text-align: left; display: grid; gap: 14px; margin: 26px 0; }
.next-steps li { display: flex; gap: 13px; align-items: flex-start; }
.next-steps .n {
  width: 26px; height: 26px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--brand); color: #fff;
  font-family: var(--f-head); font-size: .76rem; font-weight: 700;
}

/* content pages */
.prose { max-width: 780px; }
.prose h2 { font-size: 1.5rem; margin-top: 2em; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.1rem; margin-top: 1.6em; }
.prose ul { list-style: none; display: grid; gap: 8px; margin: 0 0 1rem; }
.prose ul li { display: flex; gap: 10px; }
.prose ul li::before { content: '›'; color: var(--brand); font-weight: 700; flex: none; }
.prose a { color: var(--brand-deep); text-decoration: underline; text-underline-offset: 3px; }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: clamp(26px, 4vw, 48px); align-items: start; min-width: 0;
}
.contact-grid > * { min-width: 0; }
.contact-list { display: grid; gap: 12px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start; min-width: 0;
  padding: 15px 16px; border-radius: var(--r);
  background: #fff; border: 1px solid var(--line);
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.contact-item:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.contact-item .ic {
  width: 42px; height: 42px; border-radius: 11px; flex: none;
  display: grid; place-items: center; background: var(--brand-soft); color: var(--brand-deep);
}
.contact-item .ic svg { width: 21px; height: 21px; }
.contact-item > div { min-width: 0; }
.contact-item strong { display: block; font-family: var(--f-head); color: var(--ink); font-size: .93rem; margin-bottom: 2px; }
/* emails and long addresses must wrap inside the card, never widen it */
.contact-item a, .contact-item p {
  color: var(--muted); font-size: .9rem; margin: 0;
  overflow-wrap: anywhere; line-height: 1.5;
}
.contact-item a:hover { color: var(--brand-deep); }

.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; min-width: 0; }
.stat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 20px 14px; text-align: center; min-width: 0;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
}
.stat-card:hover { border-color: var(--brand); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.stat-card .n { font-family: var(--f-head); font-size: 2rem; font-weight: 700; color: var(--brand-deep); line-height: 1; }
.stat-card .l { font-size: .85rem; color: var(--muted); margin-top: 6px; }

/* 9. FOOTER =============================================================== */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: clamp(44px, 6vw, 72px) 0 0; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: clamp(24px, 3vw, 44px); }
.foot-brand img { height: 40px; margin-bottom: 16px; }
.foot-brand p { font-size: .92rem; max-width: 34ch; }
.foot-social { display: flex; gap: 10px; margin-top: 18px; }
.foot-social a {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,.09); color: #fff; transition: background .2s, transform .2s;
}
.foot-social a:hover { background: var(--brand); transform: translateY(-3px); }
.foot-social svg { width: 19px; height: 19px; }
.site-footer h4 {
  font-family: var(--f-head); color: #fff; font-size: .95rem; font-weight: 600;
  letter-spacing: .04em; margin: 0 0 16px;
}
.foot-links { display: grid; gap: 10px; }
.foot-links a { font-size: .91rem; transition: color .2s, padding-left .2s; }
.foot-links a:hover { color: var(--brand); padding-left: 4px; }
.foot-contact { display: grid; gap: 13px; }
.foot-contact li { display: flex; gap: 11px; font-size: .91rem; }
.foot-contact svg { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: 3px; }
.foot-contact a:hover { color: var(--brand); }
.foot-bot {
  margin-top: clamp(34px, 4vw, 52px); padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between;
  font-size: .84rem;
}
.foot-bot a:hover { color: var(--brand); }

/* 10. RESPONSIVE ==========================================================
   New/rewritten components (header, sub-nav, marquee, buttons) are authored
   mobile-first and scale UP with min-width queries. Older sections keep their
   original max-width overrides below. */

/* ---- scale up from phone ---- */
@media (min-width: 641px) {
  :root { --header-h: 68px; }
  .brand img { height: 34px; }
  .nav { gap: 14px; }
  .nav-actions { gap: 8px; }
  .nav-order { padding: 10px 18px; font-size: .85rem; }
  .icon-btn { width: 42px; height: 42px; }
  .icon-btn svg { width: 21px; height: 21px; }
  .subnav-rail { gap: 4px; }
  .subnav-rail a { font-size: .88rem; padding: 8px 16px; }
}

@media (min-width: 901px) {
  :root { --header-h: 76px; --subnav-h: 0px; }
  .brand img { height: 38px; }
  .nav { gap: 20px; }
  .nav-actions { gap: 10px; }
  /* desktop has the inline .nav-links, so the mobile rail is redundant */
  .subnav { display: none; }
}

/* ---- narrow phones: shorten the CTA label so the header row still fits ----
   375px+ has room for "Order Now"; below that we swap in the short label and
   tighten the row so logo + CTA + cart + menu still fit without wrapping. */
@media (max-width: 374px) {
  .nav-order-t { display: none; }
  .nav-order-s { display: inline; }
  .nav-order { padding: 9px 13px; }
  .nav { gap: 8px; }
  .brand img { height: 27px; }
  .nav-actions { gap: 4px; }
  .icon-btn { width: 36px; height: 36px; }
  .subnav-rail a { padding: 7px 11px; font-size: .82rem; }
}

@media (max-width: 1040px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .price-wrap { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { max-width: 480px; margin-inline: auto; }
  .hero-art .chip-1 { left: 4px; }
  .hero-art .chip-2 { right: 4px; }
  /* tighter, more refined buttons on small screens */
  .btn { padding: 12px 22px; font-size: .9rem; gap: 8px; }
  .btn-lg { padding: 13px 26px; font-size: .94rem; }
  .btn-sm { padding: 9px 16px; font-size: .82rem; }
  .btn svg { width: 16px; height: 16px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .occ-grid { grid-template-columns: repeat(2, 1fr); }
  .pdp { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary { position: static; }
  .struct { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .steps { grid-template-columns: 1fr; }
  .occ-grid { grid-template-columns: 1fr; }
  .price-list { grid-template-columns: 1fr; }
  .f-grid { grid-template-columns: 1fr; }
  /* fixed 2-up on phones — auto-fill dropped to 1 huge column below ~380px */
  .p-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .p-body { padding: 13px 13px 15px; gap: 5px; }
  /* the category line is a full sentence — keep it to one quiet line, not 3 loud ones */
  .p-cat { font-size: .63rem; letter-spacing: .05em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .p-body h3 { font-size: .93rem; line-height: 1.3; }
  .p-body .p-short { display: none; }
  .p-price { padding-top: 6px; gap: 5px; }
  .p-price .from { font-size: .71rem; }
  .p-price .amt { font-size: 1.16rem; }
  /* image + title already link to the detail page, so drop the duplicate
     "Details" pill and let "Add" run the full width of the card */
  .p-actions { margin-top: 11px; }
  .p-actions .btn-ghost { display: none; }
  .p-actions .btn { padding: 10px 12px; font-size: .82rem; }
  .pdp-buy { flex-direction: column; }
  .pdp-perks { grid-template-columns: 1fr; }
  .line-item { grid-template-columns: 74px 1fr; grid-template-areas: 'img info' 'price price'; }
  .li-img { width: 74px; height: 74px; grid-area: img; }
  .li-info { grid-area: info; }
  .li-price { grid-area: price; text-align: left; }
  .cta-band { flex-direction: column; align-items: flex-start; text-align: left; }
  .foot-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .wa-float { width: 52px; height: 52px; bottom: 14px; right: 14px; }
  .btn { padding: 11px 19px; font-size: .87rem; gap: 7px; border-width: 1.5px; }
  .btn-lg { padding: 12px 22px; font-size: .89rem; }
  .btn-sm { padding: 8px 14px; font-size: .79rem; }
  .btn svg { width: 15px; height: 15px; }
  /* softer glow reads more premium at phone size */
  .btn-primary { box-shadow: 0 6px 18px rgba(226,84,15,.22); }
  .btn-wa { box-shadow: 0 6px 16px rgba(37,211,102,.22); }
  .hero-cta { gap: 10px; }

  /* Stack icon above text on phones: side-by-side leaves the label only
     ~140px and "100% Custom Design" broke across three lines. Going vertical
     gives the text the full card width, so titles sit on one line. */
  .trust-grid { gap: 10px; }
  .trust-item {
    flex-direction: column; align-items: flex-start;
    gap: 9px; padding: 14px 13px;
  }
  .trust-item:hover { transform: none; }
  .trust-ico { width: 34px; height: 34px; border-radius: 10px; }
  .trust-ico svg { width: 18px; height: 18px; }
  .trust-item strong { font-size: .85rem; }
  .trust-item .trust-txt span { font-size: .74rem; }

  .contact-item:hover, .stat-card:hover { transform: none; }
  .faq-q { padding: 15px 15px; font-size: .93rem; gap: 12px; }
  .faq-a p { padding: 0 15px 16px; font-size: .89rem; }
  .prose h2 { font-size: 1.3rem; }
  .page-head p { font-size: .94rem; }
  .sec-head p { font-size: .97rem; }
  .empty { padding-inline: 0; }
}

/* ---- very narrow phones ---- */
@media (max-width: 360px) {
  .trust-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .gal-thumbs button { width: 62px; height: 62px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  /* no auto-scroll: show one static set the user can swipe through instead */
  .marquee-track { animation: none; }
  .marquee { overflow-x: auto; scrollbar-width: none; }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee-set:last-child { display: none; }
  .faq-a { opacity: 1; transform: none; }
}

@media print {
  .site-header, .site-footer, .topbar, .wa-float, .btn, .toast-host,
  .subnav, .drawer { display: none !important; }
}
