/* ================================================
   AD1L-Wear™ — Premium Moroccan Streetwear
   Global Stylesheet
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { max-width: 100%; display: block; }
button, input, select, textarea { font: inherit; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ── Variables ── */
:root {
  --black:      #000000;
  --white:      #FFFFFF;
  --grey-900:   #111111;
  --grey-800:   #1A1A1A;
  --grey-700:   #2C2C2C;
  --grey-600:   #3D3D3D;
  --grey-500:   #6B6B6B;
  --grey-300:   #C4C4C4;
  --grey-100:   #F5F5F5;
  --grey-50:    #FAFAFA;
  --gold:       #C9A84C;

  --font-head:  'Space Grotesk', sans-serif;
  --font-body:  'Inter', sans-serif;

  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  16px;
  --radius-pill:999px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,.18);

  --container:  1400px;
  --pad:        clamp(1rem, 4vw, 4rem);
  --section-y:  clamp(4rem, 8vw, 8rem);
}

/* ── Base ── */
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Container ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  padding: .9rem 2.2rem;
  cursor: pointer;
  transition: all .25s var(--ease);
  white-space: nowrap;
  min-height: 52px;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background .2s;
}
.btn:hover::after { background: rgba(255,255,255,.07); }

.btn-primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-primary:hover {
  background: var(--grey-800);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--grey-100);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-ghost-white:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-full { width: 100%; }
.btn-sm { padding: .6rem 1.4rem; min-height: 40px; font-size: .75rem; }

/* ── Announcement Bar ── */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  height: 38px;
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 91;
}

.ticker-wrap {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.ticker {
  display: flex;
  gap: 3rem;
  white-space: nowrap;
  animation: ticker 22s linear infinite;
  width: max-content;
}

.ticker span {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.ticker .dot {
  color: var(--gold);
  font-size: .5rem;
  vertical-align: middle;
}

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

/* ── Header ── */
.site-header {
  position: absolute;
  top: 38px;
  left: 0; right: 0;
  z-index: 90;
  height: 70px;
  transition: background .3s var(--ease), box-shadow .3s;
}

.site-header.transparent { background: transparent; }
.site-header.scrolled {
  position: fixed;
  top: 0;
  background: rgba(0,0,0,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.site-header.solid { background: var(--black); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.logo {
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
}
.logo span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 2.2rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 3px;
  transition: opacity .2s;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--white);
  transition: width .3s var(--ease);
}
.nav-link:hover::after,
.nav-link.active::after { width: 100%; }

.header-icons {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--white);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: opacity .2s, background .2s;
  position: relative;
}
.icon-btn:hover { opacity: .75; }

.cart-count {
  position: absolute;
  top: -2px; right: -4px;
  background: var(--white);
  color: var(--black);
  font-size: .6rem;
  font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger { display: none; }
.hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--white);
  margin: 5px 0;
  transition: all .3s;
}

/* ── Mobile Nav ── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--black);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.5rem;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  margin-top: 1rem;
}

.mobile-nav-link {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  transition: color .2s;
}
.mobile-nav-link:hover { color: var(--grey-300); }

.mobile-nav-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--grey-700);
  display: flex;
  gap: 1.5rem;
}

.mobile-social {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--grey-300);
  transition: color .2s;
}
.mobile-social:hover { color: var(--white); }

/* ── Hero ── */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grey-900);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero.jpg');
  background-size: cover;
  background-position: center center;
  transform: scale(1.05);
  animation: hero-zoom 8s var(--ease) forwards;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.30) 60%,
    rgba(0,0,0,.05) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
  padding-top: clamp(6rem, 15vh, 10rem);
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fade-up .6s var(--ease) .3s forwards;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3rem, 9vw, 7rem);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fade-up .7s var(--ease) .5s forwards;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  color: rgba(255,255,255,.75);
  margin-bottom: 2.5rem;
  max-width: 420px;
  opacity: 0;
  animation: fade-up .7s var(--ease) .7s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fade-up .7s var(--ease) .9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.5);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.3);
  animation: scroll-line 1.5s ease infinite;
}

@keyframes scroll-line {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── Trust Bar ── */
.trust-bar {
  background: var(--grey-900);
  color: var(--white);
  padding: 1.2rem 0;
  overflow: hidden;
}

.trust-ticker {
  display: flex;
  gap: 4rem;
  animation: ticker 20s linear infinite;
  width: max-content;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .7rem;
  white-space: nowrap;
}

.trust-item svg, .trust-item .ti { font-size: 1rem; color: var(--gold); }

.trust-item span {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

/* ── Sections ── */
.section { padding-block: var(--section-y); }
.section-dark { background: var(--black); color: var(--white); }
.section-light { background: var(--grey-50); }
.section-grey { background: var(--grey-100); }

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: .75rem;
  display: block;
}

.section-dark .section-eyebrow { color: var(--grey-300); }

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: .75rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--grey-500);
  max-width: 500px;
  margin-inline: auto;
}

/* ── Header WhatsApp CTA ── */
.header-cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--black);
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.25s var(--ease);
  border: 1px solid var(--white);
}
.header-cta-btn:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* ── Categories Grid ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.categories-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cat-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.2rem;
  line-height: 1.45;
}

.cat-whatsapp-cta {
  align-self: flex-start;
  background: var(--white);
  color: var(--black);
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.cat-whatsapp-cta:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── How It Works Section ── */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.how-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}

.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.how-number {
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.35;
  margin-bottom: 1rem;
  line-height: 1;
}

.how-card-title {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-card-desc {
  font-size: 0.875rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ── Flagships Grid ── */
.products-grid-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.product-info-wrap {
  padding-block: 0.5rem;
}

.product-card-desc {
  font-size: 0.85rem;
  color: var(--grey-500);
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.quick-order-whatsapp-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius-sm);
  padding: 0.8rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

.quick-order-whatsapp-btn:hover {
  background: transparent;
  color: var(--black);
  transform: translateY(-2px);
}

/* ── Giant CTA Section ── */
.giant-cta-inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

/* ── Size Modal Label ── */
.size-selector-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--grey-600);
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  background: var(--grey-100);
  display: block;
  cursor: pointer;
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.cat-card:hover img { transform: scale(1.06); }

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.8) 0%,
    rgba(0,0,0,.2) 50%,
    rgba(0,0,0,0) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 1.75rem;
  transition: background .3s;
}

.cat-card:hover .cat-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.9) 0%,
    rgba(0,0,0,.3) 60%,
    rgba(0,0,0,0) 100%
  );
}

.cat-name {
  font-family: var(--font-head);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .5rem;
}

.cat-cta {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: gap .25s, color .25s;
}

.cat-card:hover .cat-cta { gap: .9rem; color: var(--white); }

/* ── Products Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

/* ── Product Card ── */
.product-card {
  display: block;
  cursor: pointer;
}

.product-card-media {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  aspect-ratio: 3/4;
  background: var(--grey-100);
  margin-bottom: .9rem;
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .45s ease, transform .55s var(--ease);
}

/* Front/Back hover flip */
.product-card-media.has-back .img-front {
  position: absolute;
  inset: 0;
  opacity: 1;
  transition: opacity .45s ease, transform .55s var(--ease);
}

.product-card-media.has-back .img-back {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .45s ease, transform .55s var(--ease);
}

.product-card:hover .product-card-media.has-back .img-front { opacity: 0; transform: scale(1.04); }
.product-card:hover .product-card-media.has-back .img-back  { opacity: 1; transform: scale(1.04); }
.product-card:hover .product-card-media:not(.has-back) .product-card-img { transform: scale(1.04); }

/* Flip hint label */
.flip-hint {
  position: absolute;
  bottom: .6rem;
  right: .6rem;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
  opacity: 1;
  transition: opacity .3s ease;
  pointer-events: none;
}
.product-card:hover .flip-hint { opacity: 0; }

.product-card-badges {
  position: absolute;
  top: .8rem; left: .8rem;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 2px;
}

.badge-new { background: var(--black); color: var(--white); }
.badge-sale { background: var(--grey-700); color: var(--white); }
.badge-hot { background: var(--grey-800); color: var(--gold); }

.product-card-actions {
  position: absolute;
  bottom: .8rem; left: .8rem; right: .8rem;
  display: flex;
  gap: .4rem;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s, transform .25s;
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateY(0);
}

.quick-order-btn {
  flex: 1;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: .7rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s;
}
.quick-order-btn:hover { background: var(--grey-800); }

.wishlist-btn {
  background: var(--white);
  color: var(--black);
  border: none;
  border-radius: var(--radius-sm);
  width: 40px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}
.wishlist-btn:hover { background: var(--grey-100); }
.wishlist-btn.active { color: #e53e3e; }

.product-card-name {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: .35rem;
}

.product-card-price-wrap {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .25rem;
}

.product-card-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
}

.product-card-old-price {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 500;
  color: #aaa;
  text-decoration: line-through;
}

.product-card-shipping {
  font-size: .7rem;
  font-weight: 600;
  color: #2e9e5b;
  letter-spacing: .02em;
  margin-bottom: .5rem;
}

.badge-promo {
  background: #e74c3c;
  color: #fff;
  font-weight: 700;
  font-size: .6rem;
  padding: 3px 7px;
  border-radius: 3px;
  letter-spacing: .05em;
}

.price-old {
  font-size: .85rem;
  font-weight: 400;
  color: var(--grey-400, #999);
  text-decoration: line-through;
  margin-left: .4rem;
}

/* ── Editorial Banner ── */
.editorial {
  position: relative;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: var(--grey-900);
}

.editorial-bg {
  position: absolute;
  inset: 0;
}

.editorial-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
  transition: transform 8s var(--ease);
}

.editorial:hover .editorial-bg img { transform: scale(1.03); }

.editorial-content {
  position: relative;
  z-index: 2;
  padding-inline: var(--pad);
  max-width: var(--container);
  margin-inline: auto;
  width: 100%;
}

.editorial-label {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.editorial-title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.editorial-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  margin-bottom: 2rem;
  max-width: 380px;
}

/* ── Why Us ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  text-align: center;
}

.why-item {}

.why-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--black);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.4rem;
}

.why-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  letter-spacing: -.01em;
}

.why-desc {
  font-size: .875rem;
  color: var(--grey-500);
  line-height: 1.6;
}

/* ── Reviews ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--gold);
  font-size: .9rem;
}

.review-text {
  font-size: .9375rem;
  line-height: 1.65;
  color: var(--grey-800);
  margin-bottom: 1.25rem;
  font-style: italic;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.reviewer-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--grey-700);
  flex-shrink: 0;
}

.reviewer-name {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
}

.reviewer-location {
  font-size: .75rem;
  color: var(--grey-500);
}

/* ── Brand Story ── */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--grey-100);
}

.story-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.story-img-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 45%;
  aspect-ratio: 1;
  border: 3px solid var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-200, #e5e5e5);
}

.story-eyebrow {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 1rem;
}

.story-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  margin-bottom: 1.5rem;
}

.story-body {
  font-size: 1rem;
  color: var(--grey-500);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.story-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
}

.story-stat-num {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -.03em;
  margin-bottom: .15rem;
}

.story-stat-label {
  font-size: .78rem;
  color: var(--grey-500);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Newsletter ── */
.newsletter { background: var(--black); padding-block: var(--section-y); }

.newsletter-inner {
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.newsletter-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: .75rem;
}

.newsletter-sub {
  font-size: .95rem;
  color: var(--grey-300);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: .6rem;
  max-width: 440px;
  margin: 0 auto 1rem;
}

.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  padding: .875rem 1.25rem;
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
}

.newsletter-input::placeholder { color: rgba(255,255,255,.35); }
.newsletter-input:focus { border-color: rgba(255,255,255,.5); }

.newsletter-note {
  font-size: .72rem;
  color: var(--grey-500);
  letter-spacing: .05em;
}

/* ── Footer ── */
.site-footer {
  background: var(--grey-900);
  color: var(--white);
  padding-top: var(--section-y);
  padding-bottom: 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--grey-700);
  margin-bottom: 2rem;
}

.footer-brand-desc {
  font-size: .9rem;
  color: var(--grey-300);
  line-height: 1.7;
  margin-top: .75rem;
  max-width: 260px;
}

.footer-social {
  display: flex;
  gap: .75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: .9rem;
  transition: border-color .2s, background .2s;
}

.social-link:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.footer-col-title {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer-link {
  font-size: .875rem;
  color: var(--grey-300);
  transition: color .2s;
}
.footer-link:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: .78rem;
  color: var(--grey-500);
}

.footer-payments {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.payment-badge {
  background: var(--grey-700);
  border-radius: 3px;
  padding: 3px 8px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--grey-300);
}

/* ── Cart Drawer ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 98;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  background: var(--white);
  z-index: 99;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.cart-drawer.open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 1px solid var(--grey-100);
}

.cart-title {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--black);
  padding: 4px;
  line-height: 1;
  border-radius: 50%;
  transition: background .2s;
}
.cart-close-btn:hover { background: var(--grey-100); }

/* Shipping Progress */
.shipping-progress {
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--grey-100);
}

.shipping-progress p {
  font-size: .8rem;
  margin-bottom: .6rem;
  color: var(--grey-700);
}

.progress-bar {
  height: 3px;
  background: var(--grey-100);
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--black);
  border-radius: var(--radius-pill);
  transition: width .5s var(--ease);
}

/* Cart Items */
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cart-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--grey-50, #f9f9f9);
}

.cart-item-img {
  width: 75px;
  height: 90px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--grey-100);
  flex-shrink: 0;
}

.cart-item-details { flex: 1; min-width: 0; }

.cart-item-name {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  margin-bottom: .25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item-variant {
  font-size: .78rem;
  color: var(--grey-500);
  margin-bottom: .75rem;
}

.cart-item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.qty-btn {
  width: 28px; height: 28px;
  border: 1px solid var(--grey-700);
  background: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}
.qty-btn:hover { background: var(--grey-100); }

.qty-val {
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}

.cart-item-price {
  font-family: var(--font-head);
  font-size: .95rem;
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--grey-300);
  cursor: pointer;
  font-size: .85rem;
  padding: 0 0 0 .5rem;
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--black); }

/* Cart Empty */
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  text-align: center;
  color: var(--grey-500);
}

.cart-empty-icon { font-size: 3rem; }

/* Cart Footer */
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--grey-100);
  background: var(--white);
}

.cart-cod-badge {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  font-size: .78rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--grey-700);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.cart-subtotal-label {
  font-size: .9rem;
  color: var(--grey-500);
}

.cart-subtotal-val {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
}

.cart-checkout-btn {
  width: 100%;
  background: var(--black);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1rem;
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .2s, transform .2s;
  min-height: 54px;
}
.cart-checkout-btn:hover {
  background: #075e54; /* WhatsApp green */
  transform: translateY(-1px);
}

.cart-tax-note {
  text-align: center;
  font-size: .72rem;
  color: var(--grey-500);
  margin-top: .6rem;
}

/* ── Order Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.7);
  z-index: 150;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.order-modal {
  background: var(--white);
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  padding: 2rem 1.75rem calc(2rem + env(safe-area-inset-bottom));
  transform: translateY(100%);
  transition: transform .4s var(--ease-out);
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.open .order-modal { transform: translateY(0); }

.modal-handle {
  width: 40px; height: 4px;
  background: var(--grey-300);
  border-radius: var(--radius-pill);
  margin: 0 auto 1.5rem;
}

.modal-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: .4rem;
}

.modal-sub {
  font-size: .875rem;
  color: var(--grey-500);
  margin-bottom: 1.5rem;
}

.modal-product-preview {
  display: flex;
  gap: 1rem;
  background: var(--grey-50);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.modal-product-img {
  width: 65px; height: 80px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--grey-100);
}

.modal-product-name {
  font-weight: 700;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.modal-product-price {
  font-size: .875rem;
  color: var(--grey-600);
}

.modal-form { display: flex; flex-direction: column; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-label {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--grey-700);
}

.form-input, .form-select {
  width: 100%;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  padding: .825rem 1rem;
  font-size: .9375rem;
  color: var(--black);
  background: var(--white);
  outline: none;
  transition: border-color .2s;
  appearance: none;
}

.form-input:focus, .form-select:focus {
  border-color: var(--black);
}

.size-btns {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
}

.size-btn {
  width: 48px; height: 48px;
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  background: none;
  font-family: var(--font-head);
  font-size: .875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s;
}

.size-btn.active {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.size-btn:hover:not(.active) { border-color: var(--black); }

.modal-order-btn {
  width: 100%;
  background: #25d366;
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 1.1rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  transition: background .2s, transform .2s;
  min-height: 56px;
  margin-top: .5rem;
}

.modal-order-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
}

/* ── WhatsApp Float ── */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 80;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
  animation: pulse-wa 2.5s ease infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.55);
}

@keyframes pulse-wa {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,.65); }
}

/* ── Animations ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Pages Header ── */
.page-hero {
  background: var(--black);
  padding-top: calc(38px + 70px + 4rem);
  padding-bottom: 4rem;
  text-align: center;
}

.page-hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: var(--white);
  margin-bottom: .75rem;
}

.page-hero-sub {
  font-size: 1rem;
  color: var(--grey-300);
}

/* ── Shop Page ── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
  align-items: start;
}

.shop-filters {
  position: sticky;
  top: calc(38px + 70px + 1rem);
}

.filter-section {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-100);
  margin-bottom: 1.5rem;
}

.filter-title {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.filter-opts { display: flex; flex-direction: column; gap: .6rem; }

.filter-check {
  display: flex;
  align-items: center;
  gap: .6rem;
  cursor: pointer;
  font-size: .875rem;
  color: var(--grey-700);
  transition: color .2s;
}

.filter-check:hover { color: var(--black); }
.filter-check input { width: 15px; height: 15px; cursor: pointer; accent-color: var(--black); }

.shop-main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.shop-count {
  font-size: .875rem;
  color: var(--grey-500);
}

.sort-select {
  border: 1.5px solid var(--grey-300);
  border-radius: var(--radius-sm);
  padding: .5rem 1rem;
  font-size: .8rem;
  font-family: var(--font-body);
  background: var(--white);
  cursor: pointer;
  outline: none;
}

/* ── Product Detail Page ── */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-top: calc(38px + 70px + 3rem);
  padding-bottom: 5rem;
}

.product-gallery {}

.product-main-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--grey-100);
  margin-bottom: .75rem;
}

.product-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.product-thumbs {
  display: flex;
  gap: .6rem;
}

.product-thumb {
  width: 70px; height: 85px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--grey-100);
  border: 2px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: border-color .2s;
}

.product-thumb.active { border-color: var(--black); }
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info { position: sticky; top: calc(38px + 70px + 2rem); }

.product-breadcrumb {
  font-size: .75rem;
  color: var(--grey-500);
  margin-bottom: 1.5rem;
  display: flex;
  gap: .4rem;
  align-items: center;
}

.product-breadcrumb a:hover { color: var(--black); }

.product-title {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: .75rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
}

.product-price {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 700;
}

.product-price-old {
  font-size: 1.1rem;
  color: var(--grey-500);
  text-decoration: line-through;
}

.product-reviews-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--grey-100);
}

.stars { color: var(--gold); font-size: .9rem; }
.review-count { font-size: .8rem; color: var(--grey-500); }

.option-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}

.option-label {
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.option-selected { font-size: .8rem; color: var(--grey-500); }

.product-actions {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.product-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  padding: 1.25rem;
  background: var(--grey-50);
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
}

.ptrust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  font-weight: 500;
  color: var(--grey-700);
}

.ptrust-icon { font-size: 1rem; }

/* Accordion */
.accordion { border-bottom: 1px solid var(--grey-100); }

.accordion summary {
  list-style: none;
  padding: 1.1rem 0;
  font-family: var(--font-head);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.accordion summary::-webkit-details-marker { display: none; }

.accordion summary::after {
  content: '+';
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--grey-500);
  transition: transform .25s;
}

.accordion[open] summary::after {
  transform: rotate(45deg);
}

.accordion-body {
  padding-bottom: 1.1rem;
  font-size: .875rem;
  color: var(--grey-500);
  line-height: 1.7;
}

/* ── Sticky ATC (mobile) ── */
.sticky-atc {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 70;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  padding: .85rem 1rem calc(.85rem + env(safe-area-inset-bottom));
}

.sticky-atc-inner {
  display: flex;
  gap: .75rem;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
}

.sticky-atc-info { flex: 1; min-width: 0; }

.sticky-atc-name {
  font-size: .8rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-atc-price {
  font-size: .8rem;
  color: var(--grey-500);
}

/* ── Notification Toast ── */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--black);
  color: var(--white);
  padding: .9rem 1.5rem;
  border-radius: var(--radius-pill);
  font-size: .85rem;
  font-weight: 500;
  z-index: 200;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  white-space: nowrap;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: flex; flex-direction: column; background: none; border: none; cursor: pointer; padding: 4px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-filters { position: static; display: none; }
  .shop-filters.open { display: block; }
  .product-detail { grid-template-columns: 1fr; gap: 2rem; padding-top: calc(38px + 70px + 2rem); }
  .product-info { position: static; }
  .sticky-atc { display: block; }
  .story-grid { grid-template-columns: 1fr; gap: 3rem; }
  
  .categories-grid-three { grid-template-columns: repeat(2, 1fr); }
  .products-grid-three { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .header-cta-btn { display: none; }
}

@media (max-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .newsletter-form { flex-direction: column; }
  .story-stats { gap: 1.5rem; }
  .product-trust { grid-template-columns: 1fr; }
  .cart-drawer { max-width: 100%; }
  
  .categories-grid-three { grid-template-columns: 1fr; }
  .products-grid-three { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .products-grid { gap: .6rem; }
  .categories-grid { grid-template-columns: 1fr; }
}
