/** Shopify CDN: Minification failed

Line 387:17 Expected percentage but found "."
Line 1121:45 Expected "}" to go with "{"

**/
/* =========================================================
   GapBuddy — Shopify Theme Stylesheet
   Palette:  Slate Navy + Bronze Gold + Cream + Ivory
   Type:     Cormorant Garamond (display) + Inter (UI)
   Color scheme derived from GapBuddy bear logo
   ========================================================= */

:root{
  /* Brand — slate navy from logo "Gap" */
  --navy:        #2c3e50;
  --navy-2:      #1a2636;
  --navy-3:      #131d2a;
  --navy-soft:   #3d5266;
  --navy-line:   rgba(44,62,80,0.14);

  /* Bronze gold from logo "Buddy" */
  --tan:         #b8923f;
  --tan-2:       #d4a84a;
  --tan-3:       #9a7832;
  --tan-soft:    #e8d5a8;
  --tan-ghost:   rgba(184,146,63,0.08);

  /* Backgrounds */
  --cream:       #f8f6f2;
  --cream-2:     #f0ece4;
  --ivory:       #fffdf9;
  --bone:        #f5f0e6;

  /* Ink */
  --ink:         #1a1715;
  --ink-soft:    #4a4439;
  --muted:       #8a8377;

  /* On-dark ink */
  --d-text:      #f6efe4;
  --d-text-soft: #d9d2c6;
  --d-muted:     #9a9484;
  --d-line:      rgba(246,239,228,0.14);
  --d-line-strong: rgba(246,239,228,0.26);

  /* System */
  --line:        rgba(44,62,80,0.12);
  --line-strong: rgba(44,62,80,0.22);

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --shadow-lux: 0 40px 80px -40px rgba(26,38,54,.45), 0 10px 30px -12px rgba(26,38,54,.25);
  --shadow-dark: 0 40px 80px -40px rgba(0,0,0,.65), 0 10px 30px -12px rgba(0,0,0,.45);
  --ease: cubic-bezier(.22,.61,.36,1);

  --f-display: "Cormorant Garamond", "Times New Roman", serif;
  --f-body:    "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: var(--f-body);
  background: var(--ivory);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x:hidden;
  line-height:1.55;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

/* Prevent Shopify section wrappers from clipping content */
.shopify-section{ overflow:visible !important; }
.shopify-section-group-header-group{ overflow:visible !important; }
.shopify-section-group-footer-group{ overflow:visible !important; }

.skip-link{
  position:absolute; left:-9999px; top:auto;
  padding:12px 20px; background:var(--navy); color:var(--ivory);
  z-index:999; border-radius:var(--r);
}
.skip-link:focus{ left:20px; top:20px; }

/* -----------------------------------------------------
   Utility
----------------------------------------------------- */
.wrap{ max-width:1240px; margin:0 auto; padding:0 28px; overflow:visible; }
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center; }
@media (max-width: 900px){ .grid-2{ grid-template-columns:1fr; gap:44px; } }

.eyebrow{
  display:inline-block;
  font-family:var(--f-body);
  font-size:12px; font-weight:600;
  letter-spacing:.28em; text-transform:uppercase;
  color: var(--tan);
  padding: 6px 14px;
  border:1px solid rgba(184,146,63,0.35);
  border-radius:999px;
  background: rgba(184,146,63,0.06);
  margin-bottom: 22px;
}
.eyebrow.light{ color: var(--tan-2); border-color:rgba(212,168,74,0.4); background: rgba(212,168,74,0.08); }

.display{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(42px, 6.2vw, 82px);
  line-height: 1.02;
  letter-spacing:-0.01em;
  margin:0 0 22px;
  color: var(--navy);
}
.display em{ font-style: italic; color: var(--tan); font-weight: 400; }

.section-title{
  font-family: var(--f-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height:1.05;
  letter-spacing:-0.01em;
  margin:0 0 20px;
  color: var(--navy);
}
.section-title em{ font-style:italic; color: var(--tan); font-weight:400; }
.section-head{ max-width:620px; margin-bottom:48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ color: var(--ink-soft); font-size:17px; }

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  height:52px; padding: 0 26px; border-radius:999px; border:1px solid transparent;
  font-weight:600; font-size:15px; letter-spacing:.02em;
  cursor:pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-xl{ height:60px; padding:0 36px; font-size:16px; }
.btn-primary{
  background: var(--navy);
  color: var(--ivory);
  box-shadow: 0 14px 30px -12px rgba(26,38,54,0.45);
}
.btn-primary:hover{ background: var(--navy-2); transform: translateY(-1px); box-shadow: 0 18px 36px -14px rgba(26,38,54,0.6); }

.btn-accent{
  background: var(--tan);
  color: var(--ivory);
  box-shadow: 0 14px 30px -12px rgba(184,146,63,.55);
}
.btn-accent:hover{ background: var(--tan-3); transform: translateY(-1px); }

.btn-ghost{
  background: transparent; color: var(--navy); border-color: var(--line-strong);
}
.btn-ghost:hover{ background: rgba(44,62,80,.05); border-color: var(--navy); }

.btn-ghost-light{
  background: transparent; color: var(--d-text); border-color: var(--d-line-strong);
}
.btn-ghost-light:hover{ background: rgba(246,239,228,0.06); border-color: var(--d-text); }

.reveal{ opacity:0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in{ opacity:1; transform:none; }

/* -----------------------------------------------------
   Announcement bar
----------------------------------------------------- */
.announcement{
  overflow:clip;
  background: var(--navy);
  color: var(--tan-soft);
  font-size:12px; letter-spacing:.18em; text-transform:uppercase; font-weight:500;
  padding: 10px 0;
}
.announcement-track{
  display:flex; gap:28px; white-space:nowrap;
  animation: marquee 35s linear infinite;
}
.announcement-track span[aria-hidden]{ color: var(--tan-2); }
@keyframes marquee{
  from{ transform: translateX(0); }
  to  { transform: translateX(-50%); }
}

/* -----------------------------------------------------
   Navigation
----------------------------------------------------- */
.nav{
  position: sticky; top:0; z-index:50;
  background: rgba(255,253,249,0.85);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom:1px solid var(--line);
  overflow:visible;
}
.nav-inner{
  max-width:1320px; margin:0 auto;
  height:78px; padding: 0 28px;
  display:grid; grid-template-columns: auto 1fr auto; align-items:center; gap:24px;
  overflow:visible;
}

/* Logo */
.brand{ display:inline-flex; align-items:center; gap:12px; color:var(--navy); }
.brand-logo{ height:auto; object-fit:contain; }
.brand-mark{
  display:inline-grid; place-items:center;
  width:38px; height:38px; border-radius:10px;
  background: var(--navy);
  color: var(--tan-2);
  font-weight:700; font-family: var(--f-display); font-size:22px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  position:relative;
}
.brand-mark::after{
  content:""; position:absolute; bottom:6px; left:22%; right:22%; height:2px;
  background: var(--tan); border-radius:2px;
}
.brand-word{
  font-family: var(--f-display); font-size:26px; letter-spacing:.01em;
  font-weight:600;
  background: linear-gradient(90deg, var(--navy) 0 38%, var(--tan) 38% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.brand.large .brand-mark{ width:46px; height:46px; border-radius:12px; font-size:26px; }
.brand.large .brand-word{ font-size:30px; }
.brand.large .brand-logo{ max-width:200px; }

.nav-links{ display:flex; justify-content:center; gap:32px; }
.nav-links a{
  color: var(--navy); font-size:14px; letter-spacing:.04em; font-weight:500;
  padding: 8px 2px; position:relative;
}
.nav-links a::after{
  content:""; position:absolute; left:50%; right:50%; bottom:2px;
  height:2px; background: var(--tan); transition: all .25s var(--ease);
}
.nav-links a:hover::after{ left:0; right:0; }

.nav-right{ display:flex; gap:10px; align-items:center; overflow:visible; padding:8px 0; }
.icon-btn{
  position:relative;
  width:42px; height:42px; border-radius:10px;
  background:transparent; color:var(--navy); border:1px solid var(--line);
  display:grid; place-items:center; cursor:pointer; transition: all .2s var(--ease);
  overflow:visible;
}
.icon-btn:hover{ background: rgba(44,62,80,.06); border-color: var(--navy); }
.cart-count{
  position:absolute; top:-6px; right:-6px;
  min-width:18px; height:18px; padding:0 5px;
  background: var(--tan); color: var(--ivory);
  font-size:10px; font-weight:700;
  border-radius:999px; display:grid; place-items:center;
}

.nav-burger{
  display:none;
  width:42px; height:42px; border:1px solid var(--line); border-radius:10px;
  background:transparent; cursor:pointer; color:var(--navy);
  padding:0; flex-direction:column; gap:4px; align-items:center; justify-content:center;
}
.nav-burger span{ display:block; width:18px; height:1.5px; background:currentColor; }

@media (max-width: 900px){
  .nav-links{ display:none; }
  .nav-burger{ display:flex; }
  .brand{ justify-self: center; }
}

/* Mobile drawer */
.mobile-drawer{
  position:fixed; inset:0 auto 0 0; width:min(360px, 86vw); z-index:70;
  background: var(--ivory); border-right: 1px solid var(--line);
  padding: 80px 30px; transform: translateX(-100%); transition: transform .4s var(--ease);
}
.mobile-drawer.open{ transform:none; }
.drawer-close{
  position:absolute; top:18px; right:18px;
  width:42px; height:42px; border-radius:12px; border:1px solid var(--line);
  background:transparent; color:var(--navy); font-size:24px; cursor:pointer;
}
.drawer-links{ display:flex; flex-direction:column; gap:2px; }
.drawer-links a{
  font-family: var(--f-display); font-size:28px; padding:14px 0; color:var(--navy);
  border-bottom:1px solid var(--line);
}

.backdrop{
  position:fixed; inset:0; background: rgba(19,29,42,.5); backdrop-filter: blur(4px);
  opacity:0; pointer-events:none; transition: opacity .3s var(--ease); z-index:60;
}
.backdrop.show{ opacity:1; pointer-events:auto; }

/* -----------------------------------------------------
   HERO
----------------------------------------------------- */
.hero{ position:relative; overflow:hidden; isolation:isolate; color: var(--d-text); }
.hero .display{ color: var(--ivory); }
.hero .display em{ color: var(--tan-2); }
.hero .eyebrow{ color: var(--tan-2); border-color: rgba(212,168,74,0.4); background: rgba(212,168,74,0.08); }

.hero-bg{
  position:absolute; inset:-1px; z-index:-1;
  background:
    radial-gradient(60% 60% at 80% 10%, rgba(212,168,74,0.24), transparent 60%),
    radial-gradient(50% 50% at 10% 90%, rgba(184,146,63,0.18), transparent 60%),
    linear-gradient(160deg, var(--navy-2) 0%, var(--navy-3) 100%);
}
.hero-bg::before{
  content:""; position:absolute; inset:0;
  background-image: radial-gradient(circle at 1px 1px, rgba(246,239,228,.055) 1px, transparent 0);
  background-size: 24px 24px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
  opacity:.7;
}

.hero-inner{
  max-width:1320px; margin:0 auto; padding: 90px 28px 40px;
  display:grid; grid-template-columns: 1.05fr .95fr; gap:60px; align-items:center;
}
@media (max-width: 960px){ .hero-inner{ grid-template-columns:1fr; padding: 70px 28px 30px; } }

.hero-copy .lede{
  color: var(--d-text-soft); font-size:18px; max-width:560px; margin: 0 0 34px;
}
.hero-cta{ display:flex; gap:14px; flex-wrap:wrap; margin-bottom: 44px; }
.hero .btn-primary{ background: var(--tan); color: var(--ivory); box-shadow: 0 14px 30px -12px rgba(184,146,63,.5); }
.hero .btn-primary:hover{ background: var(--tan-3); }
.hero .btn-ghost{ color: var(--d-text); border-color: var(--d-line-strong); }
.hero .btn-ghost:hover{ background: rgba(246,239,228,0.06); border-color: var(--d-text); }

.trust-row{
  list-style:none; padding:0; margin:0;
  display:flex; flex-wrap:wrap; gap: 26px 40px;
  border-top: 1px solid var(--d-line);
  padding-top: 24px;
}
.trust-row li{
  display:flex; flex-direction:column; gap:2px;
  font-size:13px; color: var(--d-text-soft);
}
.trust-row li strong{
  font-family: var(--f-display); font-size:26px; color: var(--ivory); line-height:1;
}
.trust-row li span:nth-child(2){ color: var(--tan-2); letter-spacing:2px; }
.pill{
  display:inline-block; font-size:10px; letter-spacing:.25em; text-transform:uppercase;
  color: var(--tan-2); padding: 3px 8px; border:1px solid rgba(212,168,74,0.4); border-radius:999px;
  width:max-content;
}

.hero-visual{ position:relative; }
.hero-frame{
  aspect-ratio: 4/5;
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(255,255,255,.06), transparent 60%),
    linear-gradient(160deg, #2c4060 0%, #131d2a 80%);
  border:1px solid var(--d-line-strong);
  border-radius: var(--r-xl);
  overflow:hidden;
  box-shadow: var(--shadow-dark);
  position:relative;
  padding: 36px;
  display:grid; place-items:center;
}
.hero-frame::before{
  content:""; position:absolute; inset:0;
  background: conic-gradient(from 140deg at 70% 30%, rgba(212,168,74,0.25), transparent 30%, transparent 70%, rgba(184,146,63,0.18) 100%);
  mix-blend-mode: screen; pointer-events:none;
}
.hero-frame img{
  width:86%; margin:auto;
  filter: drop-shadow(0 40px 40px rgba(0,0,0,.65));
  animation: float 7s ease-in-out infinite;
}
@keyframes float{.hero-before-after{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  width:100%; animation: float 7s ease-in-out infinite;
}
.ba-card{
  position:relative; border-radius: var(--r-lg); overflow:hidden;
  border:1px solid var(--d-line-strong);
  background: rgba(255,255,255,0.04);
}
.ba-card img{
  width:100% !important; height:100%; object-fit:cover;
  filter: none; animation: none; margin:0;
}
.ba-label{
  position:absolute; top:12px; left:12px; z-index:2;
  font-size:10px; letter-spacing:.25em; text-transform:uppercase; font-weight:700;
  padding: 5px 12px; border-radius:999px;
  background: rgba(19,29,42,0.75); color: var(--ivory);
  backdrop-filter: blur(6px);
}
.ba-label-gold{
  background: var(--tan); color: var(--ivory);
}
  0%,100%{ transform: translateY(0) rotate(0deg); }
  50%    { transform: translateY(-10px) rotate(.6deg); }
}
.hero-badge{
  position:absolute; top:22px; right:22px; z-index:2;
  width:96px; height:96px; border-radius:50%;
  background: var(--tan);
  color: var(--ivory);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  box-shadow: 0 14px 30px -10px rgba(184,146,63,.8);
  transform: rotate(-8deg);
  border: 2px solid var(--ivory);
}
.hero-badge .badge-lg{ font-family: var(--f-display); font-size:38px; line-height:1; font-weight:600; }
.hero-badge .badge-sm{ font-size:10px; text-align:center; letter-spacing:.18em; text-transform:uppercase; line-height:1.2; margin-top:2px; font-weight:600; }

/* Marquee accent */
.marquee-accent{
  overflow:hidden; border-block: 1px solid var(--d-line);
  padding: 22px 0; margin-top: 20px;
  background: var(--navy-3);
}
.marquee-track{
  display:flex; gap: 48px; white-space:nowrap;
  animation: marquee 40s linear infinite;
  font-family: var(--f-display); font-size:28px; font-style:italic; color: var(--d-text-soft);
}
.marquee-track span:nth-child(even){ color: var(--tan-2); }

/* -----------------------------------------------------
   Press bar
----------------------------------------------------- */
.press{
  padding: 46px 28px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  text-align:center;
}
.press-label{
  font-size:11px; letter-spacing:.3em; text-transform:uppercase;
  color: var(--ink-soft); margin:0 0 18px; font-weight:600;
}
.press-row{
  display:flex; flex-wrap:wrap; align-items:center; justify-content:center; gap: 48px;
  opacity:.9;
}
.press-row span{
  font-family: var(--f-display); font-size:22px; letter-spacing:.06em;
  color: var(--navy); font-weight:600;
}

/* -----------------------------------------------------
   PROBLEM
----------------------------------------------------- */
.problem{ padding: 120px 0; background: var(--cream); }
.problem p{ color: var(--ink-soft); font-size:17px; }
.bullet-list{ list-style:none; padding:0; margin: 28px 0 0; display:grid; gap:14px; }
.bullet-list li{
  padding-left: 28px; position:relative; color: var(--ink-soft);
}
.bullet-list li::before{
  content:""; position:absolute; left:0; top:11px;
  width:14px; height:2px; background: var(--tan);
}

.problem-grid{
  display:grid; grid-template-columns: 1fr 1fr; gap:14px;
}
.problem-grid figure{
  margin:0; position:relative; overflow:hidden;
  border-radius: var(--r-lg); border:1px solid var(--line);
  aspect-ratio: 4/3;
  background: var(--cream-2);
}
.problem-grid figure img{ width:100%; height:100%; object-fit:cover; transition: transform 1s var(--ease); }
.problem-grid figure:hover img{ transform: scale(1.04); }
.problem-grid figcaption{
  position:absolute; left:14px; bottom:12px;
  font-size:11px; letter-spacing:.24em; text-transform:uppercase; font-weight:600;
  padding: 6px 12px; border-radius: 999px;
  background: var(--ivory); color: var(--navy);
  border:1px solid var(--line);
}
.problem-grid .after figcaption{ background: var(--tan); color: var(--ivory); border-color: transparent; }
.problem-grid .after{ grid-column: span 2; aspect-ratio: 16/9; }

/* -----------------------------------------------------
   PRODUCT / BUY BOX
----------------------------------------------------- */
.product-section{
  padding: 120px 0;
  background: var(--ivory);
  border-block: 1px solid var(--line);
}
.product-grid{ gap: 80px; }
.media-main{
  position:relative; aspect-ratio: 1/1;
  background:
    radial-gradient(80% 60% at 30% 20%, rgba(255,255,255,.8), transparent 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-2) 80%);
  border:1px solid var(--line);
  border-radius: var(--r-xl); overflow:hidden;
  display:grid; place-items:center; padding: 40px;
  box-shadow: var(--shadow-lux);
}
.media-main img{ width:82%; filter: drop-shadow(0 30px 40px rgba(26,38,54,0.25)); transition: opacity .3s var(--ease); }
.media-chip{
  position:absolute; top:18px; left:18px;
  font-size:10px; letter-spacing:.28em; text-transform:uppercase; font-weight:600;
  padding: 6px 12px; border-radius:999px;
  background: var(--navy); color: var(--ivory);
  border:1px solid var(--navy);
}

.media-thumbs{
  display:grid; grid-template-columns: repeat(6, 1fr); gap:10px; margin-top: 14px;
}
.thumb{
  aspect-ratio:1/1; border-radius: var(--r); overflow:hidden;
  border: 1px solid var(--line);
  background: var(--cream); cursor:pointer; padding:6px;
  transition: border .2s var(--ease), transform .2s var(--ease);
}
.thumb img{ width:100%; height:100%; object-fit: cover; border-radius: 8px; }
.thumb:hover{ transform: translateY(-2px); border-color: var(--navy); }
.thumb.is-active{ border-color: var(--tan); box-shadow: 0 0 0 1px var(--tan); }

/* Buybox */
.buybox .rating-row{
  display:flex; gap:12px; align-items:center; color: var(--ink-soft); font-size:13px;
  margin-bottom: 14px;
}
.buybox .stars{ color: var(--tan); letter-spacing:2px; font-size:15px; }
.buybox-title{
  font-family: var(--f-display); font-weight:500;
  font-size: clamp(34px, 3.4vw, 46px); line-height:1.05; margin:0 0 10px;
  color: var(--navy);
}
.buybox-sub{ color: var(--ink-soft); margin:0 0 24px; font-size:16px; }

.price-row{ display:flex; align-items:baseline; gap:12px; margin-bottom: 28px; }
.price-now{
  font-family: var(--f-display); font-size: 44px; color: var(--navy); line-height:1; font-weight:600;
}
.price-was{ color: var(--muted); text-decoration: line-through; font-size:18px; }
.save-pill{
  background: var(--tan); color: var(--ivory);
  font-size:11px; letter-spacing:.2em; text-transform:uppercase; font-weight:700;
  padding: 5px 10px; border-radius: 999px;
}

.option{ margin-bottom: 26px; }
.option-head{
  display:flex; justify-content:space-between; align-items:center;
  font-size:13px; letter-spacing:.08em; text-transform:uppercase; color: var(--muted); font-weight:600;
  margin-bottom: 12px;
}
.option-value{ color: var(--navy); text-transform:none; letter-spacing:.01em; font-family: var(--f-display); font-size:18px; font-weight:500; }

.swatches{ display:flex; gap:12px; }
.swatch{
  width:44px; height:44px; border-radius:50%; border:0;
  background: var(--sw, #000);
  cursor:pointer; position:relative;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), inset 0 -8px 14px rgba(0,0,0,.35), 0 2px 6px rgba(26,38,54,.2);
  transition: transform .2s var(--ease);
}
.swatch::after{
  content:""; position:absolute; inset:-5px; border-radius:50%;
  border:2px solid transparent; transition: border .2s var(--ease);
}
.swatch:hover{ transform: translateY(-2px); }
.swatch.is-active::after{ border-color: var(--tan); }

.bundles{ display:grid; grid-template-columns: repeat(3, 1fr); gap:10px; }
@media (max-width: 600px){ .bundles{ grid-template-columns: 1fr; } }
.bundle{
  position:relative; cursor:pointer; padding:16px 14px 14px;
  border:1px solid var(--line); border-radius: var(--r);
  background: var(--cream);
  transition: all .2s var(--ease);
  display:flex; flex-direction:column; gap:4px;
}
.bundle input{ position:absolute; opacity:0; inset:0; }
.bundle-head{ display:flex; justify-content:space-between; align-items:baseline; }
.bundle-head strong{ font-family: var(--f-display); font-size:20px; font-weight:600; color:var(--navy); }
.bundle-head em{ font-style: normal; color: var(--tan); font-weight:600; }
.bundle-sub{ color: var(--muted); font-size:12px; }
.bundle:has(input:checked){ border-color: var(--navy); background: var(--ivory); box-shadow: 0 0 0 1px var(--navy); }
.bundle.is-best{ border-color: var(--tan); }
.flag{
  position:absolute; top:-10px; right:10px;
  background: var(--tan); color: var(--ivory);
  font-size:10px; letter-spacing:.2em; text-transform:uppercase; font-weight:700;
  padding: 4px 8px; border-radius: 999px;
}

.add-to-cart-btn{ width:100%; margin-top: 4px; background: var(--navy); color: var(--ivory); box-shadow: 0 14px 30px -12px rgba(26,38,54,0.45); }
.add-to-cart-btn:hover{ background: var(--navy-2); }

.buy-reassure{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  margin-top:14px; font-size:12px; color: var(--ink-soft);
  letter-spacing:.03em; font-weight:500;
}
.feature-list{
  list-style:none; padding:0; margin: 30px 0 0; display:grid; gap:12px;
  border-top:1px solid var(--line); padding-top: 22px;
}
.feature-list li{
  display:flex; align-items:center; gap:10px; color: var(--ink-soft); font-size:15px;
}
.feature-list svg{ color: var(--tan); flex-shrink:0; }

/* -----------------------------------------------------
   QUOTE band
----------------------------------------------------- */
.quote-band{
  padding: 120px 28px; text-align:center;
  background: var(--navy-2);
  color: var(--d-text);
}
.quote-band .quote-mark{
  font-family: var(--f-display); font-size: 180px; line-height:.5;
  color: var(--tan-2); margin: 0 0 8px;
}
.quote-band blockquote{
  font-family: var(--f-display); font-style: italic;
  font-size: clamp(28px, 3.4vw, 46px); line-height:1.15;
  margin: 0 auto; max-width: 900px; color: var(--ivory); font-weight:500;
}
.quote-band cite{
  display:block; margin-top: 28px; font-style:normal;
  color: var(--d-text-soft); font-size: 14px; letter-spacing:.02em;
}
.quote-band cite strong{ color: var(--tan-2); font-weight:600; }

/* -----------------------------------------------------
   HOW IT WORKS
----------------------------------------------------- */
.how{ padding: 120px 0; background: var(--ivory); }
.steps{
  display:grid; grid-template-columns: repeat(3, 1fr); gap:24px;
}
@media (max-width: 860px){ .steps{ grid-template-columns: 1fr; } }
.step{
  padding: 40px 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--cream);
  position:relative; overflow:hidden;
  transition: transform .4s var(--ease), border .4s var(--ease);
}
.step:hover{ transform: translateY(-4px); border-color: var(--tan); }
.step-num{
  font-family: var(--f-display); font-size: 68px; color: var(--tan);
  line-height:.9; display:block; margin-bottom:14px; font-weight:600;
}
.step h3{
  font-family: var(--f-display); font-weight:600; font-size: 26px; margin:0 0 8px; color: var(--navy);
}
.step p{ color: var(--ink-soft); margin:0; }

/* -----------------------------------------------------
   SPEC
----------------------------------------------------- */
.spec{ padding: 120px 0; background: var(--navy); color: var(--d-text); }
.spec .eyebrow{ color: var(--tan-2); border-color: rgba(212,168,74,0.35); background: rgba(212,168,74,0.08); }
.spec .section-title{ color: var(--ivory); }
.spec .section-title em{ color: var(--tan-2); }
.spec-grid{ gap: 90px; }
.spec p{ color: var(--d-text-soft); font-size:17px; }
.spec-img{ border-radius: var(--r-xl); overflow:hidden; aspect-ratio: 4/5; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); border:1px solid var(--d-line); }
.spec-img img{ width:100%; height:100%; object-fit: cover; }
.specs{ display:grid; grid-template-columns: 1fr 1fr; gap:20px 40px; margin:28px 0 0; }
.specs div{ border-top:1px solid var(--d-line); padding-top:14px; }
.specs dt{ font-size:11px; letter-spacing:.2em; text-transform:uppercase; color:var(--d-muted); margin-bottom:4px; font-weight:600; }
.specs dd{ font-family: var(--f-display); font-size: 20px; margin:0; color: var(--ivory); font-weight:500; }
@media (max-width: 600px){ .specs{ grid-template-columns: 1fr; } }

/* -----------------------------------------------------
   COLORS GALLERY
----------------------------------------------------- */
.colors{ padding: 120px 0; background: var(--cream); }
.color-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap:16px;
}
@media (max-width: 1024px){ .color-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .color-grid{ grid-template-columns: repeat(2, 1fr); } }
.color-card{
  margin:0; aspect-ratio: 3/4; overflow:hidden;
  border:1px solid var(--line); border-radius: var(--r-lg);
  background: var(--ivory);
  position:relative; padding: 30px;
  display:flex; flex-direction:column; align-items:center; justify-content:flex-start; gap:14px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.color-card:hover{ transform: translateY(-6px); border-color: var(--tan); box-shadow: var(--shadow-lux); }
.color-card img{
  width:75%; margin: 18px auto 0;
  filter: drop-shadow(0 20px 30px rgba(26,38,54,.2));
}
.color-card figcaption{ margin-top:auto; text-align:center; }
.color-card strong{ display:block; font-family: var(--f-display); font-size:22px; font-weight:600; color: var(--navy); }
.color-card span{ font-size:13px; color: var(--ink-soft); }

/* -----------------------------------------------------
   REVIEWS
----------------------------------------------------- */
.reviews{
  padding: 120px 0;
  background:
    radial-gradient(60% 80% at 80% 0%, rgba(212,168,74,0.12), transparent 60%),
    linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
  color: var(--d-text);
}
.reviews .eyebrow{ color: var(--tan-2); border-color: rgba(212,168,74,0.35); background: rgba(212,168,74,0.08); }
.reviews .section-title{ color: var(--ivory); }
.review-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap:16px;
}
@media (max-width: 1024px){ .review-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px){ .review-grid{ grid-template-columns: 1fr; } }
.review{
  padding: 28px; border-radius: var(--r-lg); border:1px solid var(--d-line);
  background: rgba(246,239,228,0.04);
}
.review .stars{ color: var(--tan-2); letter-spacing:2px; font-size:14px; }
.review h3{ font-family: var(--f-display); font-weight:600; font-size:22px; margin: 14px 0 10px; line-height:1.2; color: var(--ivory); }
.review p{ color: var(--d-text-soft); margin:0 0 20px; }
.review footer{ display:flex; flex-direction:column; gap:2px; border-top:1px solid var(--d-line); padding-top:14px; font-size:13px; }
.review footer strong{ font-weight:600; color: var(--ivory); }
.review footer span{ color: var(--d-muted); font-size:12px; }

/* -----------------------------------------------------
   COMPARE
----------------------------------------------------- */
.compare{ padding: 120px 0; background: var(--cream); }
.compare-card{
  border:1px solid var(--line); border-radius: var(--r-xl); overflow:hidden;
  background: var(--ivory);
  box-shadow: var(--shadow-lux);
}
.compare-row{
  display:grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 18px 24px; border-top:1px solid var(--line); align-items:center;
  font-size:14px; color: var(--ink-soft);
}
.compare-row:first-child{ border-top:0; }
.compare-row.head{
  background: var(--navy);
  font-family: var(--f-display); font-size:18px; color: var(--ivory);
  letter-spacing:.01em; font-weight:500;
}
.compare-row .col{ text-align:center; }
.compare-row .us{
  color: var(--tan); font-weight:600;
}
.compare-row.head .us{ color: var(--tan-2); }
.compare-row > div:nth-child(n+2){ text-align:center; }
.compare-row .us-logo{
  display:inline-grid; place-items:center; width:24px; height:24px; border-radius:6px;
  background: var(--tan);
  color: var(--ivory); font-weight:700; font-family: var(--f-display); margin-right:8px; vertical-align:-5px;
}
@media (max-width: 800px){
  .compare-row{ grid-template-columns: 1.4fr 1fr 1fr 1fr; font-size:12px; padding: 14px 10px; }
  .compare-row.head{ font-size:13px; }
}

/* -----------------------------------------------------
   FAQ
----------------------------------------------------- */
.faq{ padding: 120px 0; background: var(--ivory); border-block:1px solid var(--line); }
.faq p{ color: var(--ink-soft); }
.faq .btn-ghost{ margin-top:16px; }
.faq-grid{ align-items:flex-start; }
.faq-list details{
  border-top: 1px solid var(--line);
  padding: 22px 0;
  cursor:pointer;
}
.faq-list details:last-child{ border-bottom: 1px solid var(--line); }
.faq-list summary{
  font-family: var(--f-display); font-size: 22px; font-weight:600;
  list-style:none; position:relative; padding-right: 34px;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  color: var(--navy);
}
.faq-list summary::-webkit-details-marker{ display:none; }
.faq-list summary::after{
  content:"+"; font-size:28px; color: var(--tan); font-weight:300; transition: transform .3s var(--ease);
}
.faq-list details[open] summary::after{ content:"–"; }
.faq-list details p{ margin: 12px 0 0; color: var(--ink-soft); font-size:15px; }

/* -----------------------------------------------------
   FINAL CTA
----------------------------------------------------- */
.final-cta{
  padding: 140px 0; text-align:center;
  background:
    radial-gradient(60% 100% at 50% 0%, rgba(212,168,74,0.22), transparent 60%),
    linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
  color: var(--d-text);
  position:relative; overflow:hidden;
}
.final-cta .display{ color: var(--ivory); max-width: 900px; margin: 0 auto 32px; }
.final-cta .display em{ color: var(--tan-2); }
.final-cta .btn-primary{ background: var(--tan); color: var(--ivory); }
.final-cta .btn-primary:hover{ background: var(--tan-3); }
.final-cta .small{ color: var(--d-muted); font-size:13px; margin-top: 20px; letter-spacing:.02em; }

/* -----------------------------------------------------
   FOOTER
----------------------------------------------------- */
.footer{
  background: var(--navy-3);
  color: var(--d-text);
  padding: 90px 0 40px;
  overflow:visible;
}
.footer .brand-word{
  background: linear-gradient(90deg, var(--ivory) 0 55%, var(--tan-2) 55% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer .brand-mark{ background: var(--ivory); color: var(--navy); }
.footer-top{
  display:grid; grid-template-columns: 1.2fr .8fr; gap:60px;
  padding-bottom: 60px; border-bottom:1px solid var(--d-line);
  overflow:visible;
}
@media (max-width: 960px){ .footer-top{ grid-template-columns:1fr; gap:40px; } }
.footer-brand p{ color: var(--d-text-soft); margin-top: 16px; max-width:100%; word-wrap:break-word; }
.footer-sub{ min-width:0; overflow:visible; }
.footer-sub h4{
  font-family: var(--f-display); font-weight:600; font-size: 26px; margin:0 0 6px; color: var(--ivory);
}
.footer-sub p{ color: var(--d-text-soft); margin:0 0 16px; }
.newsletter{ display:flex; gap:8px; flex-wrap:wrap; }
.newsletter input{
  flex:1; min-width:0; height:52px; padding: 0 18px;
  background: rgba(246,239,228,0.04); color: var(--ivory);
  border:1px solid var(--d-line); border-radius: 999px; font-size:15px; font-family: var(--f-body);
  outline:none; transition: border .2s var(--ease);
}
.newsletter .btn-primary{ flex-shrink:0; }
.newsletter input::placeholder{ color: var(--d-muted); }
.newsletter input:focus{ border-color: var(--tan-2); }
.newsletter .btn-primary{ background: var(--tan); color: var(--ivory); }
.footer-note{ color: var(--d-muted); font-size:12px; margin: 10px 0 0; }

.footer-grid{
  padding: 40px 0;
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 28px;
  border-bottom: 1px solid var(--d-line);
}
@media (max-width: 700px){ .footer-grid{ grid-template-columns: repeat(2, 1fr); gap:36px; } }
.footer-grid h5{
  font-size:11px; letter-spacing:.25em; text-transform:uppercase; color: var(--tan-2);
  margin:0 0 14px; font-weight:700;
}
.footer-grid a{
  display:block; color: var(--d-text-soft); padding: 6px 0; font-size:14px;
  transition: color .2s var(--ease);
}
.footer-grid a:hover{ color: var(--ivory); }

.footer-bottom{
  display:flex; justify-content:space-between; gap:14px; flex-wrap:wrap;
  padding-top: 28px; color: var(--d-muted); font-size:12px; letter-spacing:.04em;
}

/* -----------------------------------------------------
   CART DRAWER
----------------------------------------------------- */
.cart-drawer{
  position:fixed; top:0; right:0; bottom:0; width: min(420px, 92vw); z-index:80;
  background: var(--ivory); border-left:1px solid var(--line);
  transform: translateX(100%); transition: transform .4s var(--ease);
  display:flex; flex-direction:column;
}
.cart-drawer.open{ transform:none; }
.cart-head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 22px 24px; border-bottom:1px solid var(--line);
}
.cart-head h3{ font-family: var(--f-display); font-weight:600; font-size: 26px; margin:0; color: var(--navy); }
.cart-body{ flex:1; overflow-y:auto; padding: 18px 24px; }
.cart-empty{ color: var(--muted); text-align:center; padding: 60px 0; font-family: var(--f-display); font-size: 22px; font-style:italic; }

.cart-item{
  display:grid; grid-template-columns: 64px 1fr auto; gap:14px; align-items:center;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.cart-item img{ width:64px; height:64px; object-fit:contain; background: var(--cream); border-radius: 10px; padding:8px; }
.cart-item .ci-t{ font-family: var(--f-display); font-size:18px; margin:0; color: var(--navy); font-weight:600; }
.cart-item .ci-s{ color: var(--muted); font-size:12px; }
.cart-item .ci-p{ color: var(--tan); font-family:var(--f-display); font-size:18px; font-weight:600; }
.cart-item .ci-q{
  display:flex; gap:6px; margin-top:8px; align-items:center; font-size:12px; color: var(--ink-soft);
}
.cart-item .ci-q button{
  width:22px; height:22px; border-radius:6px; border:1px solid var(--line);
  background:transparent; color:var(--navy); cursor:pointer;
}

.cart-foot{
  padding: 20px 24px 26px; border-top:1px solid var(--line);
  background: var(--cream);
}
.cart-total{
  display:flex; justify-content:space-between; align-items:baseline;
  margin-bottom:14px;
}
.cart-total span:first-child{ font-size:13px; color: var(--muted); letter-spacing:.1em; text-transform:uppercase; font-weight:600; }
.cart-total span:last-child{ font-family: var(--f-display); font-size:28px; color: var(--navy); font-weight:600; }

/* -----------------------------------------------------
   Toast
----------------------------------------------------- */
.toast{
  position:fixed; left: 50%; bottom: 28px; transform: translateX(-50%) translateY(20px);
  background: var(--navy); color: var(--ivory);
  border:1px solid var(--tan); border-radius: 999px;
  padding: 12px 22px; font-size:14px; z-index:90; font-weight:500;
  opacity:0; pointer-events:none;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  box-shadow: 0 20px 40px -20px rgba(26,38,54,.5);
}
.toast.show{ opacity:1; transform: translateX(-50%) translateY(0); }

/* -----------------------------------------------------
   Shopify product page
----------------------------------------------------- */
.main-product{ padding: 80px 0; background: var(--ivory); }
.product-page-grid{
  max-width:1240px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start;
}
@media (max-width: 900px){ .product-page-grid{ grid-template-columns:1fr; } }
.product-page-gallery{ position:relative; }
.product-page-gallery img{ width:100%; border-radius:var(--r-xl); border:1px solid var(--line); }
.product-page-info .product-title{
  font-family:var(--f-display); font-size:clamp(34px,3.4vw,46px); font-weight:500; color:var(--navy); margin:0 0 10px;
}
.product-page-info .product-price{
  font-family:var(--f-display); font-size:36px; color:var(--navy); font-weight:600; margin:0 0 20px;
}
.product-page-info .product-desc{ color:var(--ink-soft); font-size:16px; margin:0 0 30px; line-height:1.7; }
.variant-select{
  width:100%; height:52px; padding:0 18px; border:1px solid var(--line); border-radius:var(--r);
  background:var(--cream); font-family:var(--f-body); font-size:15px; color:var(--navy); margin-bottom:16px;
}
.qty-input{
  width:80px; height:52px; padding:0 14px; border:1px solid var(--line); border-radius:var(--r);
  background:var(--cream); font-family:var(--f-body); font-size:16px; color:var(--navy);
  text-align:center; margin-bottom:16px;
}

/* Collection page */
.main-collection{ padding:80px 0; background:var(--ivory); }
.collection-header{ max-width:1240px; margin:0 auto 48px; padding:0 28px; text-align:center; }
.collection-header h1{ font-family:var(--f-display); font-size:clamp(34px,4.4vw,58px); font-weight:500; color:var(--navy); margin:0 0 12px; }
.collection-header p{ color:var(--ink-soft); font-size:17px; }
.product-grid-collection{
  max-width:1240px; margin:0 auto; padding:0 28px;
  display:grid; grid-template-columns:repeat(auto-fill, minmax(280px,1fr)); gap:24px;
}

/* Product card */
.product-card{
  border:1px solid var(--line); border-radius:var(--r-lg); overflow:hidden;
  background:var(--ivory); transition:transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover{ transform:translateY(-4px); box-shadow:var(--shadow-lux); }
.product-card-img{
  aspect-ratio:1/1; background:var(--cream); display:grid; place-items:center; padding:24px;
}
.product-card-img img{ width:80%; height:80%; object-fit:contain; }
.product-card-info{ padding:20px; }
.product-card-info h3{
  font-family:var(--f-display); font-size:20px; font-weight:600; color:var(--navy); margin:0 0 6px;
}
.product-card-info .card-price{
  font-family:var(--f-display); font-size:20px; font-weight:600; color:var(--tan);
}

/* Cart page */
.main-cart{ padding:80px 0; background:var(--ivory); }
.cart-page{ max-width:900px; margin:0 auto; padding:0 28px; }
.cart-page h1{ font-family:var(--f-display); font-size:clamp(34px,4.4vw,46px); font-weight:500; color:var(--navy); margin:0 0 40px; }
.cart-page-empty{ text-align:center; padding:60px 0; }
.cart-page-empty p{ font-family:var(--f-display); font-size:22px; font-style:italic; color:var(--muted); margin:0 0 24px; }

/* Search page */
.main-search{ padding:80px 0; background:var(--ivory); }
.search-page{ max-width:900px; margin:0 auto; padding:0 28px; }
.search-page h1{ font-family:var(--f-display); font-size:clamp(34px,4.4vw,46px); font-weight:500; color:var(--navy); margin:0 0 30px; }
.search-form{ display:flex; gap:10px; margin-bottom:40px; }
.search-form input{
  flex:1; height:52px; padding:0 18px; border:1px solid var(--line); border-radius:999px;
  font-family:var(--f-body); font-size:15px; color:var(--navy); background:var(--cream);
}
.search-form input:focus{ border-color:var(--tan); outline:none; }

/* 404 page */
.main-404{ padding:120px 0; background:var(--ivory); text-align:center; }
.main-404 h1{ font-family:var(--f-display); font-size:clamp(60px,10vw,120px); color:var(--tan); margin:0; line-height:1; }
.main-404 p{ font-family:var(--f-display); font-size:26px; color:var(--navy); margin:20px 0 30px; }

/* Page template */
.main-page{ padding:80px 0; background:var(--ivory); }
.page-content{ max-width:800px; margin:0 auto; padding:0 28px; }
.page-content h1{ font-family:var(--f-display); font-size:clamp(34px,4.4vw,58px); font-weight:500; color:var(--navy); margin:0 0 30px; }
.page-content .rte{ color:var(--ink-soft); font-size:17px; line-height:1.7; }
.page-content .rte h2,.page-content .rte h3{ font-family:var(--f-display); color:var(--navy); }
.page-content .rte a{ color:var(--tan); text-decoration:underline; }

/* Customer pages */
.customer-page{ padding:80px 0; background:var(--ivory); }
.customer-inner{ max-width:480px; margin:0 auto; padding:0 28px; }
.customer-inner h1{ font-family:var(--f-display); font-size:36px; font-weight:500; color:var(--navy); margin:0 0 30px; text-align:center; }
.customer-inner label{ display:block; font-size:13px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; color:var(--muted); margin-bottom:6px; }
.customer-inner input[type="email"],
.customer-inner input[type="password"],
.customer-inner input[type="text"]{
  width:100%; height:52px; padding:0 18px; border:1px solid var(--line); border-radius:var(--r);
  font-family:var(--f-body); font-size:15px; color:var(--navy); background:var(--cream); margin-bottom:18px;
}
.customer-inner input:focus{ border-color:var(--tan); outline:none; }
.customer-inner .btn{ width:100%; }
.customer-inner .customer-link{ display:block; text-align:center; margin-top:16px; color:var(--tan); font-size:14px; }

/* -----------------------------------------------------
   Mobile polish
----------------------------------------------------- */
@media (max-width: 700px){
  .problem, .product-section, .how, .spec, .colors, .reviews, .compare, .faq { padding: 80px 0; }
  .final-cta{ padding: 100px 0; }
  .hero-inner{ padding-top: 50px; }
  .problem-grid{ grid-template-columns: 1fr 1fr; }
  .problem-grid .after{ grid-column: span 2; }
  .product-grid{ gap: 40px; }
  .buy-reassure{ gap:10px; font-size:11px; }
/* ── Before / After hero cards ── */
.hero-before-after{
  display:grid; grid-template-columns:1fr 1fr; gap:14px;
  width:100%; animation: float 7s ease-in-out infinite;
}
.ba-card{
  position:relative; border-radius: var(--r-lg); overflow:hidden;
  border:1px solid var(--d-line-strong);
  background: rgba(255,255,255,0.04);
}
.ba-card img{
  width:100% !important; height:100%; object-fit:cover;
  filter: none; animation: none; margin:0;
}
.ba-label{
  position:absolute; top:12px; left:12px; z-index:2;
  font-size:10px; letter-spacing:.25em; text-transform:uppercase; font-weight:700;
  padding: 5px 12px; border-radius:999px;
  background: rgba(19,29,42,0.75); color: var(--ivory);
  backdrop-filter: blur(6px);
}
.ba-label-gold{
  background: var(--tan); color: var(--ivory);
}

/* ── Hero background photo ── */
.hero-bg-photo{
  position:absolute; inset:0; z-index:0; overflow:hidden;
}
.hero-bg-photo img{
  width:100%; height:100%; object-fit:cover;
/* ── Product gallery — video support ── */
.gallery-main{
  width:100%; border-radius:var(--r-xl); overflow:hidden;
  border:1px solid var(--line); background:var(--cream);
  aspect-ratio: 1 / 1;
  display:flex; align-items:center; justify-content:center;
}
.gallery-main img{
  width:100%; height:100%; object-fit:cover; border:none; border-radius:0;
}
.gallery-video{
  width:100%; height:100%; object-fit:cover; display:block; background:#000;
}
.gallery-iframe{
  width:100%; height:100%; border:0; display:block;
}
.thumb-video-wrap{
  position:relative; width:100%; height:100%;
}
.thumb-video-wrap img{
  width:100%; height:100%; object-fit:cover; border-radius:8px;
}
.thumb-play{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  font-size:18px; color:var(--ivory);
  background: rgba(19,29,42,0.52); border-radius:8px;
  transition: background .2s;
}
.thumb:hover .thumb-play{ background: rgba(184,146,63,0.75); }}
.buybox-view-link{
  display:block; margin-top:14px; text-align:center;
  font-size:14px; color:var(--muted); text-decoration:underline;
  transition:color .2s;
}
.buybox-view-link:hover{ color:var(--navy); }