/* =========================================================
   J&H LIQUORS — BASE STYLESHEET
   Design tokens, reset, typography, layout primitives and
   components shared across every page (header, footer, cards,
   buttons, cart drawer, toasts, forms).
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root{
  /* ---- Color tokens ---- */
  --navy-900:#0E1B2E;
  --navy-800:#132540;
  --navy-700:#1B3255;
  --navy-600:#26436E;
  --gold-600:#A9821E;
  --gold-500:#C9A227;
  --gold-300:#E4C766;
  --gold-100:#F3E6BC;
  --wine-700:#6E1E2B;
  --wine-600:#8A2530;
  --cream-50:#F6F2E8;
  --cream-100:#EFE9DA;
  --stone-200:#E4DDCB;
  --ink-900:#1C1A16;
  --ink-700:#3B382F;
  --ink-500:#6B6659;
  --ink-300:#A29C8A;
  --white:#FFFFFF;
  --success:#3E7A4D;

  /* ---- Type ---- */
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* ---- Layout ---- */
  --page-max:1280px;
  --gutter:clamp(1.25rem, 4vw, 3rem);
  --radius-sm:4px;
  --radius-md:8px;
  --radius-lg:14px;
  --shadow-card:0 1px 2px rgba(14,27,46,.06);
  --shadow-pop:0 20px 45px rgba(14,27,46,.18);
  --ease:cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after{box-sizing:border-box;}
html{scroll-behavior:smooth;}
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *,*::before,*::after{animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important;}
}

body{
  margin:0;
  font-family:var(--font-body);
  color:var(--ink-900);
  background:var(--cream-50);
  -webkit-font-smoothing:antialiased;
  line-height:1.55;
}

img{max-width:100%;display:block;}
a{color:inherit;text-decoration:none;}
button{font-family:inherit;cursor:pointer;}
ul{margin:0;padding:0;list-style:none;}
h1,h2,h3,h4,p{margin:0;}
input,select,textarea{font-family:inherit;font-size:inherit;}

:focus-visible{
  outline:2px solid var(--gold-500);
  outline-offset:2px;
}

.container{
  max-width:var(--page-max);
  margin-inline:auto;
  padding-inline:var(--gutter);
}

.visually-hidden{
  position:absolute; width:1px; height:1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap;
}

/* ---- Type scale ---- */
.eyebrow{
  font-size:.72rem;
  letter-spacing:.06em;
  color:var(--gold-600);
  font-weight:700;
}
.section-heading{
  font-family:var(--font-display);
  font-weight:600;
  font-size:clamp(1.6rem,2.6vw,2.35rem);
  color:var(--navy-900);
  letter-spacing:-.01em;
}
.section-sub{
  color:var(--ink-500);
  font-size:.98rem;
  max-width:46ch;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:1.5rem;
  margin-bottom:1.75rem;
  flex-wrap:wrap;
}
.section-head .stack{display:flex;flex-direction:column;gap:.4rem;}

/* ---- Buttons ---- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.8rem 1.5rem;
  border-radius:var(--radius-sm);
  font-weight:700;
  font-size:.92rem;
  border:1px solid transparent;
  transition:transform .18s var(--ease), background-color .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
  white-space:nowrap;
}
.btn:active{transform:translateY(1px);}
.btn-gold{background:var(--gold-500);color:var(--navy-900);}
.btn-gold:hover{background:var(--gold-300);}
.btn-navy{background:var(--navy-900);color:var(--cream-50);}
.btn-navy:hover{background:var(--navy-700);}
.btn-outline{background:transparent;border-color:var(--navy-900);color:var(--navy-900);}
.btn-outline:hover{background:var(--navy-900);color:var(--white);}
.btn-outline-gold{background:transparent;border-color:var(--gold-500);color:var(--navy-900);}
.btn-outline-gold:hover{background:var(--gold-100);}
.btn-ghost{background:transparent;color:var(--navy-900);padding:.6rem .9rem;}
.btn-ghost:hover{color:var(--gold-600);}
.btn-block{width:100%;}
.btn-sm{padding:.55rem 1rem;font-size:.82rem;}
.btn[disabled]{opacity:.5;cursor:not-allowed;}

/* =========================================================
   TOP UTILITY BAR
   ========================================================= */
.topbar{
  background:var(--navy-900);
  color:var(--cream-100);
  font-size:.82rem;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding-block:.55rem;
}
.topbar-links{display:flex;align-items:center;gap:1.5rem;flex-wrap:wrap;}
.topbar-links a{display:flex;align-items:center;gap:.45rem;opacity:.92;}
.topbar-links a:hover{color:var(--gold-300);}
.topbar-links svg{flex:none;}
.topbar-social{display:flex;align-items:center;gap:.9rem;}
.topbar-social a{opacity:.85;}
.topbar-social a:hover{opacity:1;color:var(--gold-300);}
.topbar-age{
  display:flex;align-items:center;gap:.4rem;
  color:var(--gold-300);font-weight:700;letter-spacing:.03em;
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header{
  background:var(--cream-50);
  border-bottom:1px solid var(--stone-200);
  position:sticky;
  top:0;
  z-index:60;
}
.header-main{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:2rem;
  padding-block:1rem;
}
.brand{
  display:flex;
  align-items:center;
  gap:.75rem;
}
.brand img{height:52px;width:auto;}
.brand-word{
  font-family:var(--font-display);
  font-size:1.05rem;
  color:var(--navy-900);
  line-height:1.1;
}
.brand-word small{
  display:block;
  font-family:var(--font-body);
  font-size:.62rem;
  letter-spacing:.18em;
  color:var(--gold-600);
  font-weight:700;
  margin-top:.15rem;
}
.header-search{
  position:relative;
  max-width:520px;
  width:100%;
  justify-self:center;
}
.header-search input{
  width:100%;
  padding:.75rem 2.9rem .75rem 1.1rem;
  border:1px solid var(--stone-200);
  background:var(--white);
  border-radius:999px;
  font-size:.9rem;
  color:var(--ink-900);
  transition:border-color .18s var(--ease);
}
.header-search input:focus{border-color:var(--gold-500);}
.header-search input::placeholder{color:var(--ink-300);}
.header-search button{
  position:absolute;
  right:.35rem;top:50%;
  transform:translateY(-50%);
  background:var(--navy-900);
  color:var(--white);
  border:none;
  width:2.15rem;height:2.15rem;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  transition:background .18s var(--ease);
}
.header-search button:hover{background:var(--gold-500);color:var(--navy-900);}

.header-actions{
  display:flex;
  align-items:center;
  gap:1.4rem;
}
.header-action{
  display:flex;
  align-items:center;
  gap:.5rem;
  color:var(--navy-900);
  position:relative;
}
.header-action .label{
  display:flex;flex-direction:column;
  font-size:.72rem;
  line-height:1.25;
}
.header-action .label strong{font-size:.82rem;}
.header-action svg{flex:none;}
.header-action:hover{color:var(--gold-600);}
.cart-count{
  position:absolute;
  top:-8px;right:-10px;
  background:var(--wine-700);
  color:var(--white);
  font-size:.66rem;
  font-weight:800;
  min-width:18px;height:18px;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  padding:0 3px;
}
.icon-btn{background:none;border:none;color:inherit;padding:.2rem;}

.mobile-toggle{
  display:none;
  background:none;border:none;
  color:var(--navy-900);
  padding:.35rem;
}

/* ---- Primary nav ---- */
.primary-nav{
  background:var(--navy-900);
}
.primary-nav .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
}
.nav-list{
  display:flex;
  align-items:stretch;
}
.nav-list > li{position:relative;}
.nav-link{
  display:flex;
  align-items:center;
  gap:.35rem;
  padding:.9rem 1.05rem;
  color:var(--cream-100);
  font-size:.86rem;
  font-weight:600;
  letter-spacing:.01em;
  border-bottom:2px solid transparent;
  transition:border-color .18s var(--ease), color .18s var(--ease);
}
.nav-link:hover, .nav-item.is-open > .nav-link{
  color:var(--gold-300);
  border-color:var(--gold-500);
}
.nav-link svg{transition:transform .18s var(--ease);}
.nav-item.is-open .nav-link svg{transform:rotate(180deg);}
.nav-deals{color:var(--gold-300) !important;}

.nav-panel{
  position:absolute;
  top:100%;left:0;
  background:var(--white);
  min-width:600px;
  border-radius:0 0 var(--radius-md) var(--radius-md);
  box-shadow:var(--shadow-pop);
  padding:1.75rem;
  display:none;
  gap:2rem;
  grid-template-columns:repeat(3,1fr);
  z-index:50;
}
.nav-item.is-open .nav-panel{display:grid;}
.nav-panel-col h4{
  font-family:var(--font-display);
  font-size:.95rem;
  color:var(--navy-900);
  margin-bottom:.75rem;
  padding-bottom:.5rem;
  border-bottom:1px solid var(--stone-200);
}
.nav-panel-col a{
  display:block;
  padding:.35rem 0;
  font-size:.85rem;
  color:var(--ink-700);
}
.nav-panel-col a:hover{color:var(--gold-600);padding-left:.25rem;}
.nav-feature{
  border-radius:var(--radius-md);
  overflow:hidden;
  background:var(--cream-50);
  display:flex;flex-direction:column;
}
.nav-feature img{height:120px;width:100%;object-fit:cover;}
.nav-feature .nav-feature-body{padding:1rem;}
.nav-feature .nav-feature-body span{font-size:.7rem;color:var(--gold-600);font-weight:700;}
.nav-feature .nav-feature-body p{font-family:var(--font-display);font-size:1rem;margin-top:.25rem;color:var(--navy-900);}

.nav-utility{
  display:flex;
  gap:1.5rem;
}
.nav-utility a{
  color:var(--cream-100);
  font-size:.82rem;
  font-weight:600;
  opacity:.85;
}
.nav-utility a:hover{opacity:1;color:var(--gold-300);}

/* Mobile drawer nav */
.mobile-drawer{
  position:fixed; inset:0 0 0 auto;
  width:min(360px,88vw);
  background:var(--cream-50);
  transform:translateX(100%);
  transition:transform .3s var(--ease);
  z-index:120;
  overflow-y:auto;
  box-shadow:var(--shadow-pop);
}
.mobile-drawer.is-open{transform:translateX(0);}
.mobile-drawer-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.1rem 1.25rem;
  border-bottom:1px solid var(--stone-200);
}
.mobile-drawer nav{padding:.5rem 0;}
.mobile-drawer .m-link{
  display:flex;align-items:center;justify-content:space-between;
  padding:.9rem 1.25rem;
  font-weight:600;
  border-bottom:1px solid var(--stone-200);
  color:var(--navy-900);
}
.mobile-drawer .m-sub{display:none;background:var(--cream-100);}
.mobile-drawer .m-sub a{display:block;padding:.65rem 1.25rem 0.65rem 2.25rem;font-size:.88rem;color:var(--ink-700);}
.mobile-drawer li.is-open .m-sub{display:block;}
.mobile-drawer li.is-open > .m-link svg{transform:rotate(180deg);}
.scrim{
  position:fixed;inset:0;
  background:rgba(14,27,46,.5);
  opacity:0; visibility:hidden;
  transition:opacity .3s var(--ease);
  z-index:110;
}
.scrim.is-visible{opacity:1;visibility:visible;}

/* =========================================================
   BREADCRUMB
   ========================================================= */
.breadcrumb{
  padding-block:.9rem;
  font-size:.82rem;
  color:var(--ink-500);
  background:var(--cream-100);
  border-bottom:1px solid var(--stone-200);
}
.breadcrumb a:hover{color:var(--gold-600);}
.breadcrumb span{margin-inline:.4rem;color:var(--ink-300);}
.breadcrumb .current{color:var(--navy-900);font-weight:600;}

/* =========================================================
   PRODUCT CARD (shared: home, PLP, related)
   ========================================================= */
.product-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:1.25rem;
}
.product-card{
  background:var(--white);
  border:1px solid var(--stone-200);
  border-radius:var(--radius-md);
  display:flex;
  flex-direction:column;
  position:relative;
  transition:box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.product-card:hover{
  box-shadow:var(--shadow-pop);
  border-color:transparent;
  transform:translateY(-3px);
}
.product-media{
  position:relative;
  aspect-ratio:1/1.05;
  background:var(--white);
  border-radius:var(--radius-md) var(--radius-md) 0 0;
  overflow:hidden;
  display:flex;align-items:center;justify-content:center;
}
.product-media svg{width:58%;height:78%;}
.product-badge{
  position:absolute;top:.7rem;left:.7rem;
  background:var(--navy-900);
  color:var(--gold-300);
  font-size:.66rem;
  font-weight:700;
  letter-spacing:.03em;
  padding:.3rem .55rem;
  border-radius:3px;
}
.product-badge.sale{background:var(--wine-700);color:var(--white);}
.wishlist-btn{
  position:absolute;top:.6rem;right:.6rem;
  width:2.65rem;height:2.65rem;
  border-radius:50%;
  background:rgba(255,255,255,.92);
  border:none;
  display:flex;align-items:center;justify-content:center;
  color:var(--navy-900);
  font-size:1.45rem;
  line-height:1;
  transition:color .18s var(--ease), transform .18s var(--ease);
}
.wishlist-btn:hover{color:var(--wine-700);transform:scale(1.08);}
.wishlist-btn.is-active{background:var(--wine-700);color:var(--white);}
.rating-empty{font-size:.74rem;color:var(--ink-500);}
.product-body{
  padding:1rem 1.05rem 1.15rem;
  display:flex;
  flex-direction:column;
  gap:.45rem;
  flex:1;
}
.product-meta{
  display:flex;align-items:center;gap:.4rem;
  font-size:.74rem;color:var(--ink-500);
}
.rating{display:flex;align-items:center;gap:.25rem;color:var(--gold-600);}
.rating svg{width:13px;height:13px;}
.rating span{color:var(--ink-500);font-size:.74rem;}
.product-name{
  font-size:.92rem;
  font-weight:600;
  color:var(--navy-900);
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
  min-height:2.5em;
}
.product-size{font-size:.76rem;color:var(--ink-500);}
.product-price{
  display:flex;align-items:baseline;gap:.5rem;
  margin-top:.15rem;
}
.product-price .now{font-family:var(--font-display);font-size:1.15rem;color:var(--navy-900);font-weight:600;}
.product-price .was{font-size:.82rem;color:var(--ink-300);text-decoration:line-through;}
.product-card .btn{margin-top:.6rem;}

.card-scroller{
  display:flex;
  gap:1.25rem;
  overflow-x:auto;
  padding-bottom:.5rem;
  scroll-snap-type:x proximity;
}
.card-scroller .product-card{min-width:230px;scroll-snap-align:start;}
.card-scroller::-webkit-scrollbar{height:6px;}
.card-scroller::-webkit-scrollbar-thumb{background:var(--stone-200);border-radius:6px;}

/* =========================================================
   TOAST
   ========================================================= */
.toast-wrap{
  position:fixed;
  bottom:1.5rem; left:50%;
  transform:translateX(-50%) translateY(20px);
  z-index:200;
  opacity:0;
  visibility:hidden;
  transition:opacity .25s var(--ease), transform .25s var(--ease);
}
.toast-wrap.is-visible{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);}
.toast{
  display:flex;align-items:center;gap:.75rem;
  background:var(--navy-900);
  color:var(--white);
  padding:.85rem 1.25rem;
  border-radius:var(--radius-md);
  box-shadow:var(--shadow-pop);
  font-size:.88rem;
}
.toast svg{color:var(--gold-300);flex:none;}
.toast a{color:var(--gold-300);font-weight:700;margin-left:.35rem;}

/* =========================================================
   CART DRAWER
   ========================================================= */
.cart-drawer{
  position:fixed; inset:0 0 0 auto;
  width:min(420px,92vw);
  background:var(--white);
  transform:translateX(100%);
  transition:transform .32s var(--ease);
  z-index:130;
  display:flex;flex-direction:column;
  box-shadow:var(--shadow-pop);
}
.cart-drawer.is-open{transform:translateX(0);}
.cart-head{
  display:flex;align-items:center;justify-content:space-between;
  padding:1.25rem 1.5rem;
  border-bottom:1px solid var(--stone-200);
}
.cart-head h3{font-family:var(--font-display);font-size:1.2rem;color:var(--navy-900);}
.cart-items{
  flex:1;
  overflow-y:auto;
  padding:1rem 1.5rem;
  display:flex;flex-direction:column;gap:1.1rem;
}
.cart-item{
  display:grid;
  grid-template-columns:64px 1fr auto;
  gap:.9rem;
  align-items:flex-start;
}
.cart-item-media{
  width:64px;height:70px;
  background:var(--cream-100);
  border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
}
.cart-item-media svg{width:60%;height:75%;}
.cart-item-name{font-size:.88rem;font-weight:600;color:var(--navy-900);}
.cart-item-size{font-size:.76rem;color:var(--ink-500);margin-top:.15rem;}
.cart-item-price{font-weight:700;color:var(--navy-900);font-size:.9rem;}
.qty-stepper{
  display:inline-flex;align-items:center;
  border:1px solid var(--stone-200);
  border-radius:999px;
  margin-top:.5rem;
}
.qty-stepper button{
  width:1.75rem;height:1.75rem;
  border:none;background:none;
  display:flex;align-items:center;justify-content:center;
  color:var(--navy-900);
  font-size:1rem;
}
.qty-stepper button:hover{color:var(--gold-600);}
.qty-stepper input{
  width:1.9rem;text-align:center;border:none;background:none;
  font-weight:700;font-size:.85rem;color:var(--navy-900);
}
.cart-item-remove{
  background:none;border:none;color:var(--ink-300);
  justify-self:end;
}
.cart-item-remove:hover{color:var(--wine-700);}
.cart-empty{
  display:flex;flex-direction:column;align-items:center;gap:1rem;
  text-align:center;padding:3rem 1rem;color:var(--ink-500);
}
.cart-empty svg{color:var(--stone-200);width:64px;height:64px;}
.cart-foot{
  border-top:1px solid var(--stone-200);
  padding:1.25rem 1.5rem 1.5rem;
  display:flex;flex-direction:column;gap:.9rem;
}
.promo-row{display:flex;gap:.6rem;}
.promo-row input{
  flex:1;padding:.65rem .9rem;border:1px solid var(--stone-200);border-radius:var(--radius-sm);
}
.cart-subtotal{display:flex;justify-content:space-between;font-size:1rem;font-weight:700;color:var(--navy-900);}
.cart-note{font-size:.76rem;color:var(--ink-500);}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{background:var(--navy-900);color:var(--cream-100);margin-top:4rem;}
.footer-top{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr 1fr;
  gap:2.5rem;
  padding-block:3.25rem 2.5rem;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.footer-brand img{height:56px;margin-bottom:1rem;}
.footer-brand p{font-size:.86rem;color:var(--cream-100);opacity:.75;max-width:32ch;}
.footer-app{display:flex;gap:.6rem;margin-top:1.2rem;}
.footer-app img{height:36px;width:auto;}
.footer h5{
  font-family:var(--font-display);
  font-size:.95rem;
  color:var(--gold-300);
  margin-bottom:1.1rem;
}
.footer-col ul{display:flex;flex-direction:column;gap:.65rem;}
.footer-col a, .footer-col li{font-size:.86rem;opacity:.85;}
.footer-col a:hover{opacity:1;color:var(--gold-300);}
.footer-contact li{display:flex;gap:.6rem;align-items:flex-start;font-size:.86rem;opacity:.85;}
.footer-contact svg{flex:none;margin-top:.15rem;color:var(--gold-300);}
.footer-hours dl{display:grid;grid-template-columns:auto 1fr;gap:.3rem .8rem;font-size:.85rem;opacity:.85;}
.footer-hours dt{color:var(--gold-100);}
.footer-social{display:flex;gap:.75rem;margin-top:1.1rem;}
.footer-social a{
  width:2.1rem;height:2.1rem;border-radius:50%;
  border:1px solid rgba(255,255,255,.25);
  display:flex;align-items:center;justify-content:center;
}
.footer-social a:hover{background:var(--gold-500);border-color:var(--gold-500);color:var(--navy-900);}
.footer-pay{display:flex;gap:.5rem;margin-top:1rem;flex-wrap:wrap;}
.footer-pay span{
  border:1px solid rgba(255,255,255,.25);
  border-radius:4px;
  padding:.25rem .5rem;
  font-size:.7rem;
  font-weight:700;
  color:var(--cream-100);
}
.footer-bottom{
  display:flex;flex-wrap:wrap;gap:1rem 1.6rem;
  align-items:center;justify-content:space-between;
  padding-block:1.4rem;
  font-size:.78rem;
  opacity:.7;
}
.footer-legal{display:flex;flex-wrap:wrap;gap:1.3rem;}
.footer-legal a:hover{color:var(--gold-300);}

/* =========================================================
   NEWSLETTER
   ========================================================= */
.newsletter{
  background:var(--cream-100);
  border-top:1px solid var(--stone-200);
  border-bottom:1px solid var(--stone-200);
}
.newsletter-inner{
  max-width:760px;margin-inline:auto;
  text-align:center;
  padding-block:3.5rem;
}
.newsletter-inner .section-heading{margin-bottom:.5rem;}
.newsletter-inner p{color:var(--ink-500);margin-bottom:1.75rem;}
.newsletter-form{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:.9rem;
  text-align:left;
}
.field{display:flex;flex-direction:column;gap:.35rem;}
.field label{font-size:.78rem;font-weight:700;color:var(--navy-900);}
.field input{
  padding:.75rem .95rem;
  border:1px solid var(--stone-200);
  border-radius:var(--radius-sm);
  background:var(--white);
}
.field input:focus{border-color:var(--gold-500);}
.field-full{grid-column:1/-1;}
.checkbox-row{display:flex;align-items:flex-start;gap:.55rem;font-size:.78rem;color:var(--ink-500);grid-column:1/-1;}
.checkbox-row input{margin-top:.2rem;}
.checkbox-row a{color:var(--navy-900);font-weight:700;text-decoration:underline;}
.newsletter-form .btn{grid-column:1/-1;margin-top:.4rem;}

/* =========================================================
   AGE GATE MODAL
   ========================================================= */
.age-gate{
  position:fixed;inset:0;
  background:var(--navy-900);
  display:flex;align-items:center;justify-content:center;
  z-index:300;
  padding:1.5rem;
}
.age-gate[hidden]{display:none;}
.age-card{
  background:var(--cream-50);
  border-radius:var(--radius-lg);
  max-width:420px;width:100%;
  text-align:center;
  padding:2.75rem 2.25rem 2.25rem;
  box-shadow:var(--shadow-pop);
}
.age-card img{height:64px;margin-inline:auto;margin-bottom:1.25rem;}
.age-card h2{font-family:var(--font-display);font-size:1.5rem;color:var(--navy-900);margin-bottom:.6rem;}
.age-card p{color:var(--ink-500);font-size:.9rem;margin-bottom:1.75rem;}
.age-actions{display:flex;gap:.9rem;}
.age-actions .btn{flex:1;}
.age-fine{font-size:.72rem;color:var(--ink-300);margin-top:1.25rem;}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top{
  position:fixed;
  right:1.5rem;bottom:1.5rem;
  width:2.75rem;height:2.75rem;
  border-radius:50%;
  background:var(--navy-900);
  color:var(--gold-300);
  display:flex;align-items:center;justify-content:center;
  opacity:0;visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s var(--ease), transform .25s var(--ease);
  z-index:40;
  border:none;
}
.to-top.is-visible{opacity:1;visibility:visible;transform:translateY(0);}
.to-top:hover{background:var(--gold-500);color:var(--navy-900);}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width:1080px){
  .product-grid{grid-template-columns:repeat(4,1fr);}
  .footer-top{grid-template-columns:1.2fr 1fr 1fr;}
  .footer-top .footer-col:last-child{grid-column:1/-1;}
}
@media (max-width:900px){
  .header-main{grid-template-columns:auto auto;}
  .header-search{display:none;}
  .primary-nav .nav-list, .nav-utility{display:none;}
  .mobile-toggle{display:flex;}
  .product-grid{grid-template-columns:repeat(3,1fr);}
  .newsletter-form{grid-template-columns:1fr;}
  .footer-top{grid-template-columns:1fr 1fr;}
}
@media (max-width:640px){
  .product-grid{grid-template-columns:repeat(2,1fr);gap:.85rem;}
  .header-action .label{display:none;}
  .footer-top{grid-template-columns:1fr;padding-block:2.5rem 1.5rem;}
  .footer-bottom{flex-direction:column;align-items:flex-start;}
  .topbar .container{flex-direction:column;gap:.4rem;padding-block:.6rem;}
  .topbar-links{gap:1rem;}
}
