/* ==========================================================
   AMBER & ASH — Design tokens
   ========================================================== */
:root{
  --cream:        #F6F1E7;
  --cream-deep:   #EFE7D6;
  --surface:      #FFFFFF;
  --ash:          #2B2620;
  --ash-soft:     #4A4338;
  --forest:       #2B3A2F;
  --amber:        #C9A15A;
  --amber-deep:   #A9803D;
  --text:         #221F1B;
  --text-muted:   #6B6558;
  --border:       #E4DCC9;

  --font-display: 'Fraunces', serif;
  --font-body:    'Manrope', sans-serif;

  --container: 1240px;
  --radius: 2px;
  --shadow: 0 10px 30px rgba(43,38,32,.08);
  --ease: cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font-body);
  color:var(--text);
  background:var(--cream);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input{ font-family:inherit; }

.container{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; scroll-behavior:auto !important; }
}

/* focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible{
  outline:2px solid var(--amber-deep);
  outline-offset:3px;
}

/* ==========================================================
   Typography
   ========================================================== */
h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:500;
  line-height:1.08;
  margin:0;
  letter-spacing:-.01em;
}
h1{ font-size:clamp(2.6rem, 5vw, 4.4rem); font-weight:400; }
h1 em{ font-style:italic; font-weight:400; color:var(--amber-deep); }
h2{ font-size:clamp(1.9rem, 3vw, 2.7rem); }
p{ margin:0; color:var(--text-muted); line-height:1.7; }

.eyebrow{
  font-family:var(--font-body);
  font-size:.75rem;
  font-weight:700;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--amber-deep);
  margin:0 0 14px;
}
.eyebrow--light{ color:var(--amber); }

/* ==========================================================
   Buttons
   ========================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 30px;
  font-size:.85rem;
  font-weight:700;
  letter-spacing:.04em;
  text-transform:uppercase;
  border-radius:var(--radius);
  border:1px solid transparent;
  transition:transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap;
}
.btn:hover{ transform:translateY(-2px); }
.btn--dark{ background:var(--ash); color:var(--cream); }
.btn--dark:hover{ background:#171410; }
.btn--outline{ background:transparent; color:var(--ash); border-color:var(--ash); }
.btn--outline:hover{ background:var(--ash); color:var(--cream); }
.btn--ghost{ background:transparent; color:var(--ash); border-color:var(--border); }
.btn--ghost:hover{ border-color:var(--ash); }
.btn--gold{ background:var(--amber); color:var(--ash); }
.btn--gold:hover{ background:var(--amber-deep); }
.btn--full{ width:100%; }

.link-arrow{
  font-weight:700;
  font-size:.85rem;
  letter-spacing:.03em;
  color:var(--ash);
  border-bottom:1px solid var(--ash);
  padding-bottom:2px;
  transition:opacity .2s;
}
.link-arrow:hover{ opacity:.6; }

/* ==========================================================
   Announcement bar
   ========================================================== */
.announce{
  background:var(--ash);
  color:var(--cream);
  font-size:.78rem;
  letter-spacing:.03em;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  height:38px;
}
.announce__track{
  display:flex;
  gap:14px;
  white-space:nowrap;
  animation:marquee 22s linear infinite;
  padding-left:100%;
}
.announce .dot{ color:var(--amber); }
.announce__close{
  position:absolute;
  right:16px; top:50%; transform:translateY(-50%);
  background:none; border:none; color:var(--cream);
  opacity:.6; font-size:.75rem;
}
.announce__close:hover{ opacity:1; }
.announce.hidden{ display:none; }

/* ==========================================================
   Header
   ========================================================== */
.header{
  position:sticky; top:0; z-index:60;
  background:rgba(246,241,231,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--border);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between;
  height:78px;
  gap:20px;
}
.logo{
  font-family:var(--font-display);
  font-size:1.4rem;
  letter-spacing:.03em;
  font-weight:600;
  color:var(--ash);
}
.logo span{ color:var(--amber-deep); font-style:italic; }
.logo--light{ color:var(--cream); }
.logo--light span{ color:var(--amber); }

.nav{ display:flex; gap:34px; }
.nav a{
  font-size:.88rem; font-weight:600; color:var(--ash-soft);
  position:relative; padding:6px 0;
  transition:color .2s;
}
.nav a::after{
  content:''; position:absolute; left:0; bottom:0;
  width:0; height:1px; background:var(--amber-deep);
  transition:width .25s var(--ease);
}
.nav a:hover{ color:var(--ash); }
.nav a:hover::after{ width:100%; }

.header__actions{ display:flex; align-items:center; gap:6px; }
.icon-btn{
  background:none; border:none; width:40px; height:40px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; position:relative;
  transition:background .2s;
}
.icon-btn:hover{ background:var(--cream-deep); }
.icon-btn svg{
  width:20px; height:20px; fill:none;
  stroke:var(--ash); stroke-width:1.7;
  stroke-linecap:round; stroke-linejoin:round;
}
.cart-count{
  position:absolute; top:2px; right:2px;
  background:var(--amber-deep); color:#fff;
  font-size:.62rem; font-weight:700;
  width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
}

.header__burger{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  background:none; border:none; width:36px; height:36px;
}
.header__burger span{ height:2px; width:22px; background:var(--ash); transition:.3s; }
.header__burger.open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.header__burger.open span:nth-child(2){ opacity:0; }
.header__burger.open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* search overlay */
.search-overlay{
  position:absolute; top:100%; left:0; right:0;
  background:var(--surface); border-bottom:1px solid var(--border);
  transform:translateY(-8px); opacity:0; pointer-events:none;
  transition:all .25s var(--ease);
}
.search-overlay.open{ transform:translateY(0); opacity:1; pointer-events:auto; }
.search-overlay__box{ display:flex; align-items:center; gap:16px; padding:22px 24px; }
.search-overlay__box input{
  flex:1; border:none; border-bottom:2px solid var(--border);
  font-size:1.3rem; padding:8px 0; background:transparent; color:var(--text);
}
.search-overlay__box input:focus{ outline:none; border-color:var(--amber-deep); }
.search-overlay__box button{ background:none; border:none; font-size:1.2rem; color:var(--text-muted); }

/* ==========================================================
   Cart drawer
   ========================================================== */
.drawer-backdrop{
  position:fixed; inset:0; background:rgba(34,31,27,.45);
  opacity:0; pointer-events:none; transition:opacity .3s var(--ease);
  z-index:70;
}
.drawer-backdrop.open{ opacity:1; pointer-events:auto; }

.cart-drawer{
  position:fixed; top:0; right:0; bottom:0;
  width:min(420px, 100%);
  background:var(--surface);
  z-index:80;
  display:flex; flex-direction:column;
  transform:translateX(100%);
  transition:transform .35s var(--ease);
  box-shadow:-20px 0 40px rgba(0,0,0,.1);
}
.cart-drawer.open{ transform:translateX(0); }

.cart-drawer__head{
  display:flex; align-items:center; justify-content:space-between;
  padding:24px; border-bottom:1px solid var(--border);
}
.cart-drawer__head h3{ font-family:var(--font-display); font-weight:500; font-size:1.3rem; }
.cart-drawer__head button{ background:none; border:none; font-size:1.1rem; color:var(--text-muted); }

.cart-drawer__items{ flex:1; overflow-y:auto; padding:10px 24px; }
.cart-empty{ text-align:center; padding:60px 0; }
.cart-empty p{ margin-bottom:18px; }

.cart-item{
  display:flex; gap:14px; padding:18px 0; border-bottom:1px solid var(--border);
}
.cart-item img{ width:72px; height:88px; object-fit:cover; border-radius:var(--radius); }
.cart-item__info{ flex:1; display:flex; flex-direction:column; gap:4px; }
.cart-item__info h5{ margin:0; font-size:.92rem; font-weight:700; }
.cart-item__info span{ font-size:.78rem; color:var(--text-muted); }
.cart-item__row{ display:flex; align-items:center; justify-content:space-between; margin-top:auto; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--border); border-radius:var(--radius); }
.qty-stepper button{ background:none; border:none; width:26px; height:26px; font-size:.9rem; }
.qty-stepper span{ min-width:22px; text-align:center; font-size:.82rem; font-weight:600; }
.cart-item__remove{ background:none; border:none; font-size:.72rem; color:var(--text-muted); text-decoration:underline; }
.cart-item__price{ font-weight:700; font-size:.88rem; }

.cart-drawer__footer{ padding:20px 24px 26px; border-top:1px solid var(--border); }
.cart-subtotal{ display:flex; justify-content:space-between; font-weight:700; font-size:1.05rem; margin-bottom:6px; }
.cart-note{ font-size:.76rem; margin-bottom:16px; }

/* ==========================================================
   Hero
   ========================================================== */
.hero{ padding:76px 0 0; overflow:hidden; }
.hero__inner{
  display:grid; grid-template-columns:1fr .95fr;
  align-items:center; gap:50px;
}
.hero__desc{ max-width:460px; margin:26px 0 34px; font-size:1.02rem; }
.hero__ctas{ display:flex; gap:16px; flex-wrap:wrap; }
.hero__media{ position:relative; }
.hero__media img{
  width:100%; height:auto; border-radius:6px 6px 90px 6px;
  box-shadow:var(--shadow);
}
.hero__badge{
  position:absolute; left:-26px; bottom:36px;
  width:110px; height:110px; border-radius:50%;
  background:var(--amber);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  text-align:center; box-shadow:var(--shadow);
  transform:rotate(-8deg);
}
.hero__badge span{ font-family:var(--font-display); font-size:1.7rem; font-weight:600; color:var(--ash); line-height:1; }
.hero__badge small{ font-size:.58rem; font-weight:700; letter-spacing:.05em; color:var(--ash); margin-top:4px; }

/* ==========================================================
   Marquee (signature strip)
   ========================================================== */
.marquee{
  background:var(--amber);
  transform:rotate(-1.2deg) scale(1.02);
  margin:56px 0 -18px;
  overflow:hidden;
  border-top:1px solid rgba(43,38,32,.15);
  border-bottom:1px solid rgba(43,38,32,.15);
}
.marquee__track{
  display:flex; gap:26px; white-space:nowrap;
  padding:14px 0;
  font-family:var(--font-display);
  font-style:italic;
  font-size:1.15rem;
  color:var(--ash);
  animation:marquee 26s linear infinite;
  width:max-content;
}

@keyframes marquee{
  from{ transform:translateX(0); }
  to{ transform:translateX(-50%); }
}

/* ==========================================================
   Features strip
   ========================================================== */
.features{
  display:grid; grid-template-columns:repeat(4,1fr); gap:28px;
  padding:100px 24px 40px;
}
.feature{ text-align:left; }
.feature__icon{
  width:46px; height:46px; border-radius:50%;
  background:var(--cream-deep);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.feature__icon svg{ width:22px; height:22px; fill:none; stroke:var(--forest); stroke-width:1.6; }
.feature h4{ font-family:var(--font-body); font-size:.98rem; font-weight:800; margin-bottom:4px; }
.feature p{ font-size:.85rem; margin:0; }

/* ==========================================================
   Section basics
   ========================================================== */
.section{ padding:96px 0; }
.section--tint{ background:var(--cream-deep); }
.section__head{ max-width:560px; margin-bottom:48px; }
.section__head--row{
  display:flex; align-items:flex-end; justify-content:space-between;
  max-width:none;
}

/* ==========================================================
   Category grid
   ========================================================== */
.cat-grid{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:20px;
}
.cat-card{
  position:relative; display:block; overflow:hidden; border-radius:6px;
  min-height:220px;
}
.cat-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.cat-card:hover img{ transform:scale(1.06); }
.cat-card::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(20,17,13,.65), transparent 60%);
}
.cat-card__label{
  position:absolute; left:20px; bottom:18px;
  font-family:var(--font-display); font-size:1.3rem; color:#fff; font-weight:500;
}
.cat-card--tall{ grid-row:span 2; }
.cat-card__stack{ display:flex; flex-direction:column; gap:20px; }
.cat-card__stack .cat-card{ min-height:190px; flex:1; }

/* ==========================================================
   Promo split
   ========================================================== */
.promo{
  display:grid; grid-template-columns:1fr 1fr; gap:60px;
  align-items:center; padding:20px 24px 100px;
}
.promo__media img{ border-radius:6px; box-shadow:var(--shadow); }
.promo__copy h2{ margin-bottom:18px; }
.promo__copy > p{ margin-bottom:22px; max-width:460px; }
.promo__list{ margin:0 0 30px; display:flex; flex-direction:column; gap:10px; }
.promo__list li{
  padding-left:24px; position:relative; font-size:.92rem; color:var(--ash-soft);
}
.promo__list li::before{
  content:'✓'; position:absolute; left:0; top:0;
  color:var(--amber-deep); font-weight:700;
}

/* ==========================================================
   Product grid / cards
   ========================================================== */
.product-grid{
  display:grid; grid-template-columns:repeat(4, 1fr); gap:26px;
}
.product-card{
  background:var(--surface);
  border-radius:6px; overflow:hidden;
  border:1px solid var(--border);
  transition:box-shadow .3s var(--ease), transform .3s var(--ease);
  display:flex; flex-direction:column;
}
.product-card:hover{ box-shadow:var(--shadow); transform:translateY(-4px); }
.product-card__media{ position:relative; aspect-ratio:4/5; overflow:hidden; }
.product-card__media img{ width:100%; height:100%; object-fit:cover; transition:transform .5s var(--ease); }
.product-card:hover .product-card__media img{ transform:scale(1.05); }
.product-card__tag{
  position:absolute; top:12px; left:12px;
  background:var(--ash); color:var(--cream);
  font-size:.65rem; font-weight:700; letter-spacing:.05em;
  padding:5px 10px; border-radius:20px; text-transform:uppercase;
}
.product-card__tag--sale{ background:var(--amber-deep); }
.product-card__quick{
  position:absolute; left:12px; right:12px; bottom:-46px;
  background:var(--ash); color:var(--cream);
  border:none; padding:12px; font-size:.78rem; font-weight:700;
  letter-spacing:.03em; text-transform:uppercase; border-radius:var(--radius);
  transition:bottom .3s var(--ease), background .2s;
}
.product-card:hover .product-card__quick{ bottom:12px; }
.product-card__quick:hover{ background:#171410; }

.product-card__body{ padding:16px 16px 20px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-card__cat{ font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; color:var(--text-muted); }
.product-card__name{ font-family:var(--font-display); font-size:1.05rem; font-weight:500; color:var(--text); }
.product-card__prices{ display:flex; align-items:center; gap:8px; margin-top:4px; }
.price{ font-weight:700; }
.price--old{ text-decoration:line-through; color:var(--text-muted); font-weight:500; font-size:.85rem; }

/* ==========================================================
   CTA newsletter
   ========================================================== */
.cta{
  position:relative; padding:110px 0;
  background:var(--forest); color:var(--cream);
  overflow:hidden; text-align:center;
}
.cta__bg{
  position:absolute; inset:0; background-size:cover; background-position:center;
  opacity:.18; filter:grayscale(1);
}
.cta__inner{ position:relative; max-width:600px; margin:0 auto; }
.cta h2{ color:var(--cream); margin-bottom:14px; }
.cta > .container > p{ color:#D9D2C3; }
.cta__form{
  display:flex; gap:12px; margin:34px auto 10px; max-width:440px;
}
.cta__form input{
  flex:1; padding:14px 18px; border:1px solid rgba(246,241,231,.3);
  background:rgba(246,241,231,.06); color:var(--cream); border-radius:var(--radius);
}
.cta__form input::placeholder{ color:#B9B2A2; }
.cta__form input:focus{ outline:none; border-color:var(--amber); }
.cta__msg{ font-size:.8rem; color:var(--amber); min-height:1.2em; }

/* ==========================================================
   About / values (dark section)
   ========================================================== */
.section--dark{ background:var(--ash); color:var(--cream); }
.about__inner{
  display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center;
}
.about__copy h2{ color:var(--cream); margin-bottom:18px; }
.about__copy > p{ color:#C9C2B3; max-width:440px; margin-bottom:36px; }
.about__stats{ display:flex; gap:40px; }
.about__stats strong{ display:block; font-family:var(--font-display); font-size:2rem; color:var(--amber); }
.about__stats span{ font-size:.78rem; color:#B9B2A2; letter-spacing:.03em; }
.about__media img{ border-radius:6px; }

/* ==========================================================
   Testimonials
   ========================================================== */
.testimonial{ max-width:720px; margin:0 auto; text-align:center; }
.testimonial__track{ position:relative; min-height:200px; }
.testimonial__slide{
  margin:0; position:absolute; inset:0;
  opacity:0; transform:translateY(12px);
  transition:opacity .4s var(--ease), transform .4s var(--ease);
  pointer-events:none;
}
.testimonial__slide.active{ opacity:1; transform:translateY(0); pointer-events:auto; position:relative; }
.stars{ color:var(--amber-deep); letter-spacing:.1em; margin-bottom:16px; }
.testimonial__slide p{ font-family:var(--font-display); font-size:1.35rem; font-style:italic; color:var(--text); line-height:1.5; }
.testimonial__slide footer{ margin-top:22px; display:flex; flex-direction:column; gap:2px; }
.testimonial__slide footer strong{ font-size:.92rem; }
.testimonial__slide footer span{ font-size:.78rem; color:var(--text-muted); }

.testimonial__nav{ display:flex; align-items:center; justify-content:center; gap:22px; margin-top:30px; }
.testimonial__nav button{
  background:var(--surface); border:1px solid var(--border);
  width:40px; height:40px; border-radius:50%; font-size:1rem;
  transition:background .2s, border-color .2s;
}
.testimonial__nav button:hover{ background:var(--ash); color:var(--cream); border-color:var(--ash); }
.testimonial__dots{ display:flex; gap:8px; }
.testimonial__dots span{
  width:7px; height:7px; border-radius:50%; background:var(--border); cursor:pointer;
  transition:background .2s, transform .2s;
}
.testimonial__dots span.active{ background:var(--amber-deep); transform:scale(1.3); }

/* ==========================================================
   Footer
   ========================================================== */
.footer{ background:var(--ash); color:#C9C2B3; padding-top:90px; }
.footer__top{
  display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr 1fr;
  gap:40px; padding-bottom:60px; border-bottom:1px solid rgba(246,241,231,.12);
}
.footer__brand p{ color:#B9B2A2; margin:18px 0 22px; font-size:.9rem; max-width:280px; }
.footer__social{ display:flex; gap:10px; }
.footer__social a{
  width:36px; height:36px; border:1px solid rgba(246,241,231,.25); border-radius:50%;
  display:flex; align-items:center; justify-content:center; font-size:.68rem; font-weight:700;
  transition:background .2s, border-color .2s;
}
.footer__social a:hover{ background:var(--amber); color:var(--ash); border-color:var(--amber); }

.footer__col h5{
  color:var(--cream); font-size:.82rem; letter-spacing:.05em; text-transform:uppercase;
  margin:0 0 18px; font-weight:700;
}
.footer__col a, .footer__col p{ display:block; font-size:.88rem; margin-bottom:12px; color:#B9B2A2; transition:color .2s; }
.footer__col a:hover{ color:var(--amber); }

.footer__bottom{
  display:flex; align-items:center; justify-content:space-between;
  padding:26px 24px; font-size:.78rem; color:#8f8878;
}
.footer__payments{ display:flex; gap:16px; font-weight:700; letter-spacing:.03em; font-size:.72rem; }

/* ==========================================================
   Back to top
   ========================================================== */
.to-top{
  position:fixed; right:24px; bottom:24px; z-index:50;
  width:46px; height:46px; border-radius:50%;
  background:var(--ash); color:var(--cream); border:none;
  font-size:1.1rem; box-shadow:var(--shadow);
  opacity:0; pointer-events:none; transform:translateY(10px);
  transition:all .3s var(--ease);
}
.to-top.show{ opacity:1; pointer-events:auto; transform:translateY(0); }
.to-top:hover{ background:var(--amber-deep); }

/* ==========================================================
   Scroll reveal
   ========================================================== */
[data-reveal]{
  opacity:0; transform:translateY(24px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:translateY(0); }

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns:repeat(2,1fr); }
  .features{ grid-template-columns:repeat(2,1fr); row-gap:36px; }
  .about__inner{ grid-template-columns:1fr; }
  .about__media{ order:-1; }
  .footer__top{ grid-template-columns:1fr 1fr 1fr; }
  .footer__brand{ grid-column:1 / -1; margin-bottom:10px; }
}

@media (max-width: 900px){
  .hero__inner{ grid-template-columns:1fr; }
  .hero__media{ order:-1; max-width:420px; margin:0 auto; }
  .promo{ grid-template-columns:1fr; }
  .promo__media{ order:-1; }
  .cat-grid{ grid-template-columns:1fr 1fr; }
  .cat-card--tall{ grid-row:auto; min-height:260px; }
  .cat-card__stack{ grid-column:span 2; flex-direction:row; }
}

@media (max-width: 760px){
  /* Keep the mobile drawer above page content. backdrop-filter on the
     sticky header creates a stacking context, so the drawer must be
     promoted with the header rather than relying on a child z-index. */
  .header{
    z-index:100;
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
  }

  .nav{
    position:fixed; top:0; right:0; bottom:0; width:78%; max-width:320px;
    background:var(--cream); flex-direction:column; gap:0;
    padding:100px 32px 32px; z-index:65;
    transform:translateX(100%); transition:transform .35s var(--ease);
    box-shadow:-10px 0 30px rgba(0,0,0,.08);
  }
  .nav.open{ transform:translateX(0); }
  .nav a{ padding:16px 0; border-bottom:1px solid var(--border); font-size:1rem; }
  .header__burger{ display:flex; }
  .header__inner{ height:68px; }
  .logo{ font-size:1.15rem; }

  .section{ padding:64px 0; }
  .section__head--row{ flex-direction:column; align-items:flex-start; gap:14px; }

  .product-grid{ grid-template-columns:1fr 1fr; gap:16px; }
  .features{ grid-template-columns:1fr 1fr; padding-top:64px; }
  .cta__form{ flex-direction:column; }
  .footer__top{ grid-template-columns:1fr 1fr; }
  .footer__bottom{ flex-direction:column; gap:14px; text-align:center; }
}

@media (max-width: 480px){
  .product-grid{ grid-template-columns:1fr 1fr; gap:12px; }
  .product-card__name{ font-size:.92rem; }
  .cat-grid{ grid-template-columns:1fr; }
  .cat-card__stack{ grid-column:auto; flex-direction:column; }
  .footer__top{ grid-template-columns:1fr; }
  .hero__badge{ width:86px; height:86px; left:-14px; bottom:20px; }
  .hero__badge span{ font-size:1.3rem; }
  .marquee__track{ font-size:.95rem; }
}

/* ==========================================================
   New Arrivals — larger cards on phones
   (scoped to #arrivalsGrid so Bestsellers is unaffected)
   ========================================================== */
@media (max-width: 760px){
  #arrivalsGrid{ grid-template-columns:1fr 1fr; gap:18px; }
  #arrivalsGrid .product-card__name{ font-size:1rem; }
  #arrivalsGrid .price{ font-size:1rem; }
  #arrivalsGrid .product-card__cat{ font-size:.74rem; }
}

@media (max-width: 600px){
  /* Match the larger single-column mobile treatment used by New Arrivals. */
  #arrivalsGrid,
  #bestsellersGrid{
    grid-template-columns:1fr;
    gap:28px;
    max-width:420px;
    margin:0 auto;
  }

  #arrivalsGrid .product-card__media,
  #bestsellersGrid .product-card__media{
    aspect-ratio:4/4.6;
  }

  #arrivalsGrid .product-card__quick,
  #bestsellersGrid .product-card__quick{
    bottom:12px;
    font-size:.78rem;
  }

  #arrivalsGrid .product-card__body,
  #bestsellersGrid .product-card__body{
    padding:18px 18px 22px;
  }

  #arrivalsGrid .product-card__name,
  #bestsellersGrid .product-card__name{
    font-size:1.2rem;
  }

  #arrivalsGrid .price,
  #bestsellersGrid .price{
    font-size:1.1rem;
  }

  #arrivalsGrid .product-card__cat,
  #bestsellersGrid .product-card__cat{
    font-size:.76rem;
  }
}
