/* ============================================================
   MONOVALYA — Premium DXN Store
   Design language: Warm & earthy luxury (honey · coffee · herbal)
   ============================================================ */

:root {
  /* Brand palette */
  --primary: #8B1E1E;        /* deep ganoderma red */
  --primary-dark: #6E1515;
  --secondary: #5A3A22;      /* roasted coffee brown */
  --secondary-dark: #3E2715;
  --gold: #C49A45;
  --gold-soft: #E0C485;
  --gold-deep: #A77E2E;
  --bg: #F8F6F2;             /* warm cream */
  --bg-warm: #F2ECE2;
  --surface: #FFFFFF;
  --ink: #222222;
  --ink-soft: #5C544B;
  --ink-faint: #8C8378;
  --success: #4CAF50;
  --line: #E7DECF;

  /* Type */
  --font: 'Cairo', system-ui, sans-serif;

  /* Radii / shadow / motion */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --shadow-sm: 0 4px 18px rgba(62, 39, 21, .07);
  --shadow-md: 0 14px 40px rgba(62, 39, 21, .10);
  --shadow-lg: 0 30px 70px rgba(62, 39, 21, .16);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --container: 1280px;
}

/* ---------- Base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: var(--font); line-height: 1.25; margin: 0; font-weight: 800; }
p { margin: 0; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--gold-soft); color: var(--secondary-dark); }

.container-x { width: min(100% - 40px, var(--container)); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 120px); position: relative; }

/* ---------- Typographic helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .82rem; font-weight: 700; letter-spacing: .12em;
  color: var(--gold-deep); text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold); border-radius: 2px; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  color: var(--secondary-dark);
  letter-spacing: -.01em;
  text-wrap: balance;
}
.section-lede {
  margin-top: 14px; max-width: 56ch; color: var(--ink-soft);
  font-size: 1.06rem; text-wrap: pretty;
}
.section-head { margin-bottom: clamp(34px, 5vw, 56px); }
.section-head.center { text-align: center; }
.section-head.center .eyebrow,
.section-head.center .section-lede { margin-inline: auto; }
.text-gold { color: var(--gold-deep); }

/* ---------- Buttons ---------- */
.btn-x {
  --b: var(--primary);
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  border: none; cursor: pointer; border-radius: var(--r-pill);
  padding: 15px 30px; display: inline-flex; align-items: center; gap: 11px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s;
  white-space: nowrap;
}
.btn-x i { font-size: .95em; }
.btn-primary-x { background: var(--primary); color: #fff; box-shadow: 0 12px 30px rgba(139, 30, 30, .28); }
.btn-primary-x:hover { background: var(--primary-dark); transform: translateY(-3px); box-shadow: 0 18px 40px rgba(139, 30, 30, .36); color: #fff; }
.btn-ghost-x { background: transparent; color: var(--secondary-dark); border: 1.5px solid var(--line); }
.btn-ghost-x:hover { border-color: var(--gold); color: var(--gold-deep); transform: translateY(-3px); background: #fff; }
.btn-gold-x { background: var(--gold); color: var(--secondary-dark); box-shadow: 0 12px 30px rgba(196, 154, 69, .32); }
.btn-gold-x:hover { background: var(--gold-deep); color: #fff; transform: translateY(-3px); }
.btn-wa { background: #25D366; color: #fff; box-shadow: 0 12px 30px rgba(37, 211, 102, .3); }
.btn-wa:hover { background: #1da851; color: #fff; transform: translateY(-3px); }
.btn-sm { padding: 11px 20px; font-size: .92rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset-block-start: 0; inset-inline: 0; z-index: 1000;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
  padding-block: 20px;
}
.site-header .nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 13px; }
.brand .mark {
  width: 46px; height: 46px; border-radius: 14px; flex: none;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: grid; place-items: center; color: var(--gold-soft);
  font-size: 1.35rem; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease);
}
.brand:hover .mark { transform: rotate(-8deg) scale(1.05); }
.brand .name { font-weight: 800; font-size: 1.5rem; letter-spacing: .04em; line-height: 1.05; color: var(--secondary-dark); }
.brand .tagline { font-size: .68rem; font-weight: 600; letter-spacing: .18em; color: var(--gold-deep); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-weight: 600; font-size: 1rem; color: var(--secondary-dark);
  padding: 8px 16px; border-radius: var(--r-pill); position: relative;
  transition: color .3s;
}
.main-nav a::after {
  content: ""; position: absolute; inset-block-end: 2px; inset-inline-start: 50%;
  transform: translateX(50%); width: 0; height: 2px; background: var(--gold);
  border-radius: 2px; transition: width .3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }
.main-nav a:hover::after, .main-nav a.active::after { width: 22px; }

.nav-icons { display: flex; align-items: center; gap: 4px; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 50%; border: none; background: transparent;
  color: var(--secondary-dark); font-size: 1.12rem; cursor: pointer; position: relative;
  display: grid; place-items: center; transition: background .3s, color .3s, transform .3s;
}
.icon-btn:hover { background: var(--bg-warm); color: var(--primary); transform: translateY(-2px); }
.icon-btn .count {
  position: absolute; inset-block-start: 4px; inset-inline-start: 4px;
  min-width: 19px; height: 19px; padding: 0 5px; border-radius: 999px;
  background: var(--primary); color: #fff; font-size: .68rem; font-weight: 700;
  display: grid; place-items: center; border: 2px solid var(--bg);
}
.hamburger { display: none; }

/* Header — transparent over hero */
.site-header.over-hero { background: transparent; }
.site-header.over-hero .brand .name,
.site-header.over-hero .main-nav a,
.site-header.over-hero .icon-btn { color: #fff; }
.site-header.over-hero .brand .tagline { color: var(--gold-soft); }
.site-header.over-hero .icon-btn:hover { background: rgba(255, 255, 255, .14); color: #fff; }
.site-header.over-hero .icon-btn .count { border-color: transparent; }

/* Header — scrolled / solid */
.site-header.scrolled {
  background: rgba(248, 246, 242, .88);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 8px 30px rgba(62, 39, 21, .08);
  padding-block: 12px;
  border-block-end: 1px solid var(--line);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: #fff; overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% -10%, rgba(196, 154, 69, .30), transparent 55%),
    radial-gradient(100% 120% at 0% 110%, rgba(90, 58, 34, .55), transparent 60%),
    linear-gradient(135deg, #4a1414 0%, #6E1515 38%, #5A3A22 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 26px 26px; opacity: .5;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center;
  padding-block: 140px 80px; position: relative; z-index: 2;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px; font-size: .85rem; font-weight: 600;
  background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
  padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: 26px;
  backdrop-filter: blur(6px); color: var(--gold-soft);
}
.hero h1 {
  font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 800; letter-spacing: -.015em;
  text-wrap: balance; margin-bottom: 22px;
}
.hero h1 .hl { color: var(--gold-soft); }
.hero-sub { font-size: clamp(1.05rem, 1.5vw, 1.25rem); color: rgba(255, 255, 255, .82); max-width: 50ch; margin-bottom: 36px; text-wrap: pretty; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 36px; margin-top: 54px; flex-wrap: wrap; }
.hero-stats .num { font-size: 2rem; font-weight: 800; color: var(--gold-soft); line-height: 1; }
.hero-stats .lbl { font-size: .9rem; color: rgba(255, 255, 255, .72); margin-top: 6px; }

/* Hero showcase */
.hero-art { position: relative; display: grid; place-items: center; min-height: 440px; }
.hero-disc {
  position: absolute; width: 430px; height: 430px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(224, 196, 133, .5), rgba(139, 30, 30, .15) 60%, transparent 72%);
  filter: blur(2px);
}
.hero-ring { position: absolute; border: 1px dashed rgba(224, 196, 133, .35); border-radius: 50%; }
.hero-ring.r1 { width: 380px; height: 380px; animation: spin 38s linear infinite; }
.hero-ring.r2 { width: 480px; height: 480px; animation: spin 60s linear infinite reverse; border-style: dotted; }
@keyframes spin { to { transform: rotate(360deg); } }

.hero-product {
  position: relative; z-index: 3; width: 320px; height: 380px; border-radius: var(--r-lg);
  background: linear-gradient(160deg, #fff8ee, #f0ddc0);
  box-shadow: var(--shadow-lg); display: grid; place-items: center; text-align: center;
  padding: 30px; color: var(--secondary-dark);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.hero-product.has-img { padding: 0; background: #fff; overflow: hidden; }
.hero-product.has-img .hero-pimg { width: 100%; height: 100%; object-fit: cover; }
/* hero slider */
.hero-swiper { position: relative; z-index: 3; width: 320px; max-width: 78vw; overflow: hidden; border-radius: var(--r-lg); animation: floaty 6s ease-in-out infinite; }
.hero-swiper .hero-product { width: 100%; height: 380px; animation: none; box-shadow: var(--shadow-lg); }
.hero-swiper-pagination { position: absolute; inset-block-end: 10px; inset-inline: 0; z-index: 5; display: flex; gap: 7px; justify-content: center; }
.hero-swiper-pagination .swiper-pagination-bullet { width: 8px; height: 8px; background: rgba(255,255,255,.6); opacity: 1; border-radius: 999px; transition: width .3s var(--ease), background .3s; }
.hero-swiper-pagination .swiper-pagination-bullet-active { width: 22px; background: var(--gold-soft); }
.hero-product .plabel {
  position: absolute; inset-block-end: 0; inset-inline: 0; z-index: 2; padding: 22px 20px 18px;
  background: linear-gradient(0deg, rgba(45,25,12,.82), transparent); color: #fff; text-align: center;
}
.hero-product .plabel .pksmall { color: var(--gold-soft); }
.hero-product .plabel .ptitle { font-size: 1.4rem; font-weight: 800; }
.hero-product .picon { font-size: 4.4rem; color: var(--primary); margin-bottom: 14px; }
.hero-product .pksmall { font-size: .8rem; letter-spacing: .18em; color: var(--gold-deep); font-weight: 700; }
.hero-product .ptitle { font-size: 1.5rem; font-weight: 800; margin: 6px 0; }
.hero-product .pprice { font-weight: 800; color: var(--primary); font-size: 1.25rem; margin-top: 8px; }
.floating-chip {
  position: absolute; z-index: 4; background: rgba(255, 255, 255, .96); color: var(--secondary-dark);
  border-radius: 16px; padding: 12px 16px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 11px; font-weight: 700; font-size: .9rem;
}
.floating-chip i { color: var(--gold-deep); font-size: 1.2rem; }
.floating-chip.c1 { inset-block-start: 30px; inset-inline-start: -10px; animation: floaty 5s ease-in-out infinite .4s; }
.floating-chip.c2 { inset-block-end: 50px; inset-inline-end: -6px; animation: floaty 5.6s ease-in-out infinite .9s; }
.floating-chip .tval { color: var(--success); }

.hero-wave { position: absolute; inset-block-end: -1px; inset-inline: 0; z-index: 2; line-height: 0; }
.hero-wave svg { width: 100%; height: 90px; display: block; }

/* ============================================================
   PRODUCT CARDS
   ============================================================ */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.product-card {
  background: var(--surface); border-radius: var(--r-md); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s;
  display: flex; flex-direction: column; position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold-soft); }
.product-thumb {
  position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center;
  overflow: hidden;
}
.product-thumb .pic { font-size: 3.6rem; transition: transform .5s var(--ease); }
.product-card:hover .product-thumb .pic { transform: scale(1.12) rotate(-4deg); }
.product-thumb .pimg { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.product-card:hover .product-thumb .pimg { transform: scale(1.06); }
.product-thumb .wm {
  position: absolute; inset-block-end: 12px; inset-inline: 0; text-align: center;
  font-size: .62rem; letter-spacing: .3em; font-weight: 700; color: rgba(62, 39, 21, .28);
}
/* product tint themes */
.t-coffee { background: linear-gradient(150deg, #efe0cc, #d8b98e); color: #5A3A22; }
.t-coffee .pic { color: #5A3A22; }
.t-green { background: linear-gradient(150deg, #e3ece0, #bcd3b0); color: #3c5a31; }
.t-green .pic { color: #3c5a31; }
.t-red { background: linear-gradient(150deg, #f1dcd8, #d6a59c); color: #8B1E1E; }
.t-red .pic { color: #8B1E1E; }
.t-honey { background: linear-gradient(150deg, #f7eccb, #e6c277); color: #97701f; }
.t-honey .pic { color: #97701f; }
.t-gold { background: linear-gradient(150deg, #f3e9d2, #dec48a); color: #97701f; }
.t-gold .pic { color: #97701f; }
.t-earth { background: linear-gradient(150deg, #ece2d4, #c8b196); color: #5A3A22; }
.t-earth .pic { color: #5A3A22; }

.product-tag {
  position: absolute; inset-block-start: 12px; inset-inline-start: 12px; z-index: 2;
  background: var(--primary); color: #fff; font-size: .72rem; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-pill);
}
.product-tag.gold { background: var(--gold); color: var(--secondary-dark); }
.wish-btn {
  position: absolute; inset-block-start: 12px; inset-inline-end: 12px; z-index: 2;
  width: 38px; height: 38px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(255, 255, 255, .92); color: var(--ink-soft); display: grid; place-items: center;
  transition: color .3s, transform .3s, background .3s; box-shadow: var(--shadow-sm);
}
.wish-btn:hover, .wish-btn.on { color: var(--primary); transform: scale(1.12); }
.wish-btn.on i { font-weight: 900; }

.product-body { padding: 18px 18px 20px; display: flex; flex-direction: column; flex: 1; }
.product-cat { font-size: .76rem; font-weight: 700; letter-spacing: .04em; color: var(--gold-deep); margin-bottom: 5px; }
.product-name { font-size: 1.12rem; font-weight: 800; color: var(--secondary-dark); }
.product-stars { color: var(--gold); font-size: .82rem; margin: 7px 0 12px; letter-spacing: 1px; }
.product-stars span { color: var(--ink-faint); font-weight: 600; margin-inline-start: 5px; }
.product-foot { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.product-price { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.product-price .old { font-size: .88rem; color: var(--ink-faint); text-decoration: line-through; font-weight: 600; margin-inline-start: 8px; }
.add-cart {
  border: none; cursor: pointer; width: 46px; height: 46px; border-radius: 13px;
  background: var(--bg-warm); color: var(--secondary-dark); font-size: 1.05rem;
  display: grid; place-items: center; transition: background .3s, color .3s, transform .3s;
}
.add-cart:hover { background: var(--primary); color: #fff; transform: translateY(-2px) scale(1.05); }

/* ============================================================
   CATEGORIES
   ============================================================ */
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cat-card {
  position: relative; border-radius: var(--r-md); overflow: hidden; min-height: 230px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  color: #fff; box-shadow: var(--shadow-sm); isolation: isolate;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card::before { content: ""; position: absolute; inset: 0; z-index: -2; transition: transform .6s var(--ease); }
.cat-card:hover::before { transform: scale(1.08); }
.cat-card .catimg { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .catimg { transform: scale(1.08); }
.cat-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 30%, rgba(45, 25, 12, .78)); }
.cat-card.c-coffee::before { background: linear-gradient(150deg, #7a5230, #4a2f18); }
.cat-card.c-supp::before { background: linear-gradient(150deg, #4e6b3f, #2f4427); }
.cat-card.c-gano::before { background: linear-gradient(150deg, #9a2b27, #5a1414); }
.cat-card.c-food::before { background: linear-gradient(150deg, #b5862f, #6e5018); }
.cat-card.c-care::before { background: linear-gradient(150deg, #6b5b8a, #3e3454); }
.cat-card.c-honey::before { background: linear-gradient(150deg, #c79233, #8a5e16); }
.cat-card .cic { font-size: 2.1rem; color: var(--gold-soft); position: absolute; inset-block-start: 24px; inset-inline-end: 24px; opacity: .9; }
.cat-card h3 { font-size: 1.35rem; font-weight: 800; }
.cat-card .cmeta { font-size: .9rem; color: rgba(255, 255, 255, .82); margin-top: 4px; display: flex; align-items: center; gap: 7px; }
.cat-card .cmeta .arr { transition: transform .35s var(--ease); }
.cat-card:hover .cmeta .arr { transform: translateX(-6px); }

/* ============================================================
   WHY CHOOSE  (band on cream)
   ============================================================ */
.why { background: var(--bg-warm); }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.why-card {
  background: var(--surface); border-radius: var(--r-md); padding: 32px 22px; text-align: center;
  border: 1px solid var(--line); transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.why-ic {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  font-size: 1.5rem; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary));
}
.why-card:nth-child(2) .why-ic { background: linear-gradient(135deg, var(--gold-deep), var(--gold)); }
.why-card:nth-child(3) .why-ic { background: linear-gradient(135deg, #4e6b3f, #2f4427); }
.why-card:nth-child(4) .why-ic { background: linear-gradient(135deg, var(--secondary), var(--secondary-dark)); }
.why-card:nth-child(5) .why-ic { background: linear-gradient(135deg, #9a2b27, #5a1414); }
.why-card h4 { font-size: 1.08rem; color: var(--secondary-dark); margin-bottom: 7px; }
.why-card p { font-size: .9rem; color: var(--ink-soft); }

/* ============================================================
   SLIDERS (best sellers + testimonials)
   ============================================================ */
.swiper { padding-block: 8px 4px; }
.best-sellers .product-card { height: 100%; }
.swiper-slide { height: auto; }

.testimonials { background: linear-gradient(135deg, var(--secondary-dark), var(--primary-dark)); color: #fff; }
.testimonials .section-title { color: #fff; }
.testimonials .section-lede { color: rgba(255, 255, 255, .8); }
.testimonials .eyebrow { color: var(--gold-soft); }
.t-card {
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(8px); border-radius: var(--r-md); padding: 32px; height: 100%;
}
.t-stars { color: var(--gold-soft); margin-bottom: 14px; letter-spacing: 2px; }
.t-quote { font-size: 1.05rem; line-height: 1.8; color: rgba(255, 255, 255, .94); margin-bottom: 22px; text-wrap: pretty; }
.t-quote::before { content: "“"; color: var(--gold-soft); font-size: 2rem; font-weight: 800; }
.t-person { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 52px; height: 52px; border-radius: 50%; flex: none; display: grid; place-items: center;
  font-weight: 800; font-size: 1.1rem; color: var(--secondary-dark);
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
}
.t-name { font-weight: 800; }
.t-role { font-size: .85rem; color: rgba(255, 255, 255, .68); }

.slider-nav { display: flex; gap: 12px; justify-content: center; margin-top: 36px; }
.snav {
  width: 50px; height: 50px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff;
  color: var(--secondary-dark); cursor: pointer; display: grid; place-items: center; font-size: 1.05rem;
  transition: all .3s var(--ease);
}
.snav:hover { background: var(--primary); color: #fff; border-color: var(--primary); transform: translateY(-2px); }
.testimonials .snav { background: rgba(255, 255, 255, .1); border-color: rgba(255, 255, 255, .25); color: #fff; }
.testimonials .snav:hover { background: var(--gold); color: var(--secondary-dark); border-color: var(--gold); }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-wrap {
  position: relative; border-radius: var(--r-lg); overflow: hidden; padding: clamp(40px, 6vw, 72px);
  background:
    radial-gradient(90% 120% at 90% 0%, rgba(196, 154, 69, .35), transparent 60%),
    linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff; text-align: center; box-shadow: var(--shadow-lg);
}
.newsletter-wrap::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px); background-size: 24px 24px;
}
.newsletter-wrap > * { position: relative; z-index: 1; }
.newsletter-wrap h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); margin-bottom: 12px; }
.newsletter-wrap p { color: rgba(255, 255, 255, .85); max-width: 50ch; margin: 0 auto 30px; }
.nl-form { display: flex; gap: 12px; max-width: 540px; margin: 0 auto; flex-wrap: wrap; }
.nl-form input {
  flex: 1; min-width: 220px; border: none; border-radius: var(--r-pill); padding: 15px 24px;
  font-family: var(--font); font-size: 1rem; background: rgba(255, 255, 255, .95);
}
.nl-form input:focus { outline: 3px solid var(--gold-soft); }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.ig-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.ig-item {
  position: relative; aspect-ratio: 1; border-radius: var(--r-sm); overflow: hidden; cursor: pointer;
  display: grid; place-items: center; color: rgba(255, 255, 255, .9); font-size: 1.6rem;
}
.ig-item::after {
  content: "\f16d"; font-family: "Font Awesome 6 Brands"; font-weight: 400; position: absolute; inset: 0;
  display: grid; place-items: center; background: rgba(90, 58, 34, .55); color: #fff; font-size: 1.5rem;
  opacity: 0; transition: opacity .35s var(--ease);
}
.ig-item:hover::after { opacity: 1; }
.ig-item:nth-child(6n+1) { background: linear-gradient(150deg, #7a5230, #4a2f18); }
.ig-item:nth-child(6n+2) { background: linear-gradient(150deg, #9a2b27, #5a1414); }
.ig-item:nth-child(6n+3) { background: linear-gradient(150deg, #4e6b3f, #2f4427); }
.ig-item:nth-child(6n+4) { background: linear-gradient(150deg, #c79233, #8a5e16); }
.ig-item:nth-child(6n+5) { background: linear-gradient(150deg, #6b5b8a, #3e3454); }
.ig-item:nth-child(6n) { background: linear-gradient(150deg, #b5862f, #6e5018); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--secondary-dark); color: rgba(255, 255, 255, .76); padding-block: 70px 0; position: relative; }
.footer-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 50px; border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer-brand .brand .name { color: #fff; }
.footer-brand p { margin: 20px 0 24px; max-width: 36ch; font-size: .95rem; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .08); color: #fff; transition: all .3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--secondary-dark); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-size: 1.05rem; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul a { font-size: .94rem; transition: color .3s, padding .3s; }
.footer-col ul a:hover { color: var(--gold-soft); padding-inline-start: 5px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 11px; margin-bottom: 14px; font-size: .94rem; }
.footer-contact li i { color: var(--gold-soft); margin-top: 5px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 24px; flex-wrap: wrap; font-size: .88rem; }
.footer-bottom .pays { display: flex; gap: 14px; font-size: 1.5rem; color: rgba(255, 255, 255, .5); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.wa-float {
  position: fixed; inset-block-end: 24px; inset-inline-end: 24px; z-index: 900;
  width: 60px; height: 60px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 12px 30px rgba(37, 211, 102, .45);
  transition: transform .35s var(--ease);
}
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366;
  z-index: -1; animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse { 0% { transform: scale(1); opacity: .6; } 100% { transform: scale(1.8); opacity: 0; } }
.wa-float:hover { transform: scale(1.1); color: #fff; }

/* ============================================================
   MOBILE NAV / BOTTOM BAR
   ============================================================ */
.mobile-drawer {
  position: fixed; inset: 0; z-index: 1100; visibility: hidden; pointer-events: none;
}
.mobile-drawer .scrim { position: absolute; inset: 0; background: rgba(45, 25, 12, .5); opacity: 0; transition: opacity .35s; }
.mobile-drawer .panel {
  position: absolute; inset-block: 0; inset-inline-end: 0; width: min(86vw, 360px);
  background: var(--bg); box-shadow: var(--shadow-lg); padding: 26px 24px;
  transform: translateX(100%); transition: transform .4s var(--ease);
  display: flex; flex-direction: column;
}
.mobile-drawer.open { visibility: visible; pointer-events: auto; }
.mobile-drawer.open .scrim { opacity: 1; }
.mobile-drawer.open .panel { transform: translateX(0); }
.mobile-drawer .drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.mobile-drawer .closer { font-size: 1.4rem; background: none; border: none; color: var(--secondary-dark); cursor: pointer; }
.mobile-drawer nav a {
  display: flex; align-items: center; gap: 14px; padding: 15px 8px; font-size: 1.15rem; font-weight: 700;
  color: var(--secondary-dark); border-bottom: 1px solid var(--line);
}
.mobile-drawer nav a i { color: var(--gold-deep); width: 24px; text-align: center; }
.mobile-drawer .drawer-cta { margin-top: auto; padding-top: 24px; }

.bottom-nav {
  position: fixed; inset-block-end: 0; inset-inline: 0; z-index: 880; display: none;
  background: rgba(255, 255, 255, .96); backdrop-filter: blur(12px);
  border-block-start: 1px solid var(--line); padding: 8px 6px calc(8px + env(safe-area-inset-bottom));
  grid-template-columns: repeat(5, 1fr); box-shadow: 0 -8px 24px rgba(62, 39, 21, .08);
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 6px 0;
  font-size: .68rem; font-weight: 700; color: var(--ink-faint); position: relative;
}
.bottom-nav a i { font-size: 1.2rem; }
.bottom-nav a.active { color: var(--primary); }
.bottom-nav a .count {
  position: absolute; inset-block-start: 0; inset-inline-end: calc(50% - 22px);
  min-width: 16px; height: 16px; padding: 0 4px; border-radius: 999px; background: var(--primary);
  color: #fff; font-size: .6rem; display: grid; place-items: center;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .main-nav, .nav-icons .desk-only { display: none; }
  .hamburger { display: grid; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; padding-block: 120px 90px; gap: 60px; }
  .hero-badge, .hero-cta, .hero-stats { justify-content: center; }
  .hero-sub { margin-inline: auto; }
  .hero-art { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .cat-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .bottom-nav { display: grid; }
  body { padding-bottom: 64px; }
  .wa-float { inset-block-end: 78px; }
  .hero-product { width: 260px; height: 320px; }
  .hero-ring.r1 { width: 300px; height: 300px; }
  .hero-ring.r2 { width: 370px; height: 370px; }
  .hero-disc { width: 320px; height: 320px; }
  .section-head { text-align: center; }
  .section-head .eyebrow, .section-head .section-lede { margin-inline: auto; }
}
@media (max-width: 420px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .product-thumb .pic { font-size: 3rem; }
}

/* ============================================================
   TOAST
   ============================================================ */
.mv-toast {
  position: fixed; inset-block-end: 28px; inset-inline-start: 50%; transform: translate(50%, 30px);
  z-index: 1200; background: var(--secondary-dark); color: #fff; font-weight: 700; font-size: .95rem;
  padding: 14px 24px; border-radius: var(--r-pill); box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transition: opacity .35s var(--ease), transform .35s var(--ease);
  border: 1px solid rgba(255, 255, 255, .12); max-width: 90vw;
}
.mv-toast.show { opacity: 1; transform: translate(50%, 0); }
@media (max-width: 680px) { .mv-toast { inset-block-end: 88px; } }

/* ============================================================
   INNER PAGE HEADER (sub-hero band)
   ============================================================ */
.page-hero {
  position: relative; color: #fff; overflow: hidden; padding-block: 150px 60px;
  background:
    radial-gradient(110% 90% at 85% -10%, rgba(196,154,69,.28), transparent 55%),
    linear-gradient(135deg, #4a1414 0%, #6E1515 42%, #5A3A22 100%);
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.04) 1px, transparent 1px); background-size: 26px 26px; opacity: .5;
}
.page-hero .container-x { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); letter-spacing: -.01em; }
.page-hero p { color: rgba(255,255,255,.82); max-width: 56ch; margin-top: 12px; font-size: 1.05rem; }
.breadcrumb-x { display: flex; gap: 9px; align-items: center; font-size: .9rem; color: var(--gold-soft); margin-bottom: 16px; font-weight: 600; }
.breadcrumb-x a { color: rgba(255,255,255,.75); }
.breadcrumb-x a:hover { color: #fff; }
.breadcrumb-x i { font-size: .7rem; opacity: .6; }

/* ============================================================
   SHOP TOOLBAR + FILTERS
   ============================================================ */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.shop-aside { position: sticky; top: 100px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 24px; box-shadow: var(--shadow-sm); }
.shop-aside h3 { font-size: 1.05rem; color: var(--secondary-dark); margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.filter-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 26px; }
.filter-list button {
  text-align: start; background: transparent; border: none; cursor: pointer; font-family: var(--font);
  font-size: .98rem; font-weight: 600; color: var(--ink-soft); padding: 11px 14px; border-radius: var(--r-sm);
  display: flex; align-items: center; gap: 11px; transition: all .25s var(--ease);
}
.filter-list button i { width: 20px; color: var(--gold-deep); }
.filter-list button:hover { background: var(--bg-warm); color: var(--secondary-dark); }
.filter-list button.active { background: var(--primary); color: #fff; }
.filter-list button.active i { color: var(--gold-soft); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.shop-toolbar .res { color: var(--ink-soft); font-weight: 600; }
.shop-toolbar .res b { color: var(--primary); }
.toolbar-controls { display: flex; gap: 12px; flex-wrap: wrap; }
.field-x { display: flex; align-items: center; gap: 10px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 10px 18px; }
.field-x i { color: var(--ink-faint); }
.field-x input, .field-x select { border: none; background: transparent; font-family: var(--font); font-size: .95rem; color: var(--ink); outline: none; min-width: 130px; }
#shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================
   CART PAGE
   ============================================================ */
.cart-layout { display: grid; grid-template-columns: 1.6fr .9fr; gap: 30px; align-items: start; }
.cart-panel { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); overflow: hidden; }
.cart-panel-head { padding: 20px 24px; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.cart-panel-head h2 { font-size: 1.2rem; color: var(--secondary-dark); }
.cart-row { display: grid; grid-template-columns: 84px 1fr auto auto auto; align-items: center; gap: 18px; padding: 18px 24px; border-bottom: 1px solid var(--line); }
.cart-row:last-child { border-bottom: none; }
.cart-row-img { width: 84px; height: 84px; border-radius: var(--r-sm); overflow: hidden; background: var(--bg-warm); display: grid; place-items: center; color: var(--ink-faint); font-size: 1.6rem; }
.cart-row-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-row-info h4 { font-size: 1.04rem; color: var(--secondary-dark); margin-bottom: 4px; }
.cart-row-unit { font-size: .85rem; color: var(--ink-faint); }
.cart-row-total { font-weight: 800; color: var(--primary); white-space: nowrap; }
.cart-row-del { background: transparent; border: none; cursor: pointer; color: var(--ink-faint); font-size: 1rem; width: 38px; height: 38px; border-radius: 50%; transition: all .25s; }
.cart-row-del:hover { background: #f8e6e2; color: var(--primary); }
.qty-stepper { display: inline-flex; align-items: center; gap: 0; border: 1px solid var(--line); border-radius: var(--r-pill); overflow: hidden; background: var(--bg); }
.qty-btn { width: 36px; height: 36px; border: none; background: transparent; cursor: pointer; font-size: 1.1rem; font-weight: 700; color: var(--secondary-dark); transition: background .2s; }
.qty-btn:hover { background: var(--bg-warm); color: var(--primary); }
.qty-val { min-width: 34px; text-align: center; font-weight: 700; }
.cart-empty { text-align: center; padding: 70px 24px; }
.cart-empty i { font-size: 3.4rem; color: var(--gold-soft); margin-bottom: 18px; }
.cart-empty h3 { color: var(--secondary-dark); margin-bottom: 8px; }
.cart-empty p { color: var(--ink-soft); margin-bottom: 24px; }

.summary-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 26px; position: sticky; top: 100px; }
.summary-card h3 { font-size: 1.15rem; color: var(--secondary-dark); margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--line); }
.summary-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; color: var(--ink-soft); }
.summary-row.total { border-top: 1px solid var(--line); padding-top: 16px; margin-top: 6px; font-size: 1.2rem; font-weight: 800; color: var(--secondary-dark); }
.summary-row.total b { color: var(--primary); }
.summary-note { font-size: .85rem; color: var(--ink-faint); margin-top: 14px; display: flex; gap: 8px; align-items: flex-start; }
.summary-note i { color: var(--success); margin-top: 3px; }

/* ============================================================
   CHECKOUT FORM
   ============================================================ */
.checkout-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-sm); padding: 28px; margin-top: 24px; }
.checkout-card h3 { font-size: 1.2rem; color: var(--secondary-dark); margin-bottom: 6px; }
.checkout-card .sub { color: var(--ink-soft); font-size: .94rem; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: .9rem; font-weight: 700; color: var(--secondary-dark); }
.form-field label .req { color: var(--primary); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font); font-size: 1rem; padding: 13px 16px; border: 1.5px solid var(--line);
  border-radius: var(--r-sm); background: var(--bg); color: var(--ink); transition: border-color .25s, box-shadow .25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(196,154,69,.16); background: #fff; }
.form-field textarea { resize: vertical; min-height: 90px; }
.pay-options { display: flex; flex-direction: column; gap: 10px; }
.pay-opt { display: flex; align-items: center; gap: 12px; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm); cursor: pointer; transition: all .25s; }
.pay-opt:hover { border-color: var(--gold-soft); }
.pay-opt input { accent-color: var(--primary); width: 18px; height: 18px; }
.pay-opt i { color: var(--gold-deep); font-size: 1.2rem; width: 24px; }
.pay-opt .po-name { font-weight: 700; color: var(--secondary-dark); }
.pay-opt .po-desc { font-size: .82rem; color: var(--ink-faint); }
.pay-opt:has(input:checked) { border-color: var(--primary); background: #fdf4f2; }

/* ============================================================
   PRODUCT DETAIL
   ============================================================ */
.pd-layout { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: start; }
.pd-gallery { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); position: sticky; top: 100px; }
.pd-main-img { aspect-ratio: 1; border-radius: var(--r-md); overflow: hidden; background: var(--bg-warm); display: grid; place-items: center; }
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-info .pd-cat { color: var(--gold-deep); font-weight: 700; letter-spacing: .04em; margin-bottom: 10px; }
.pd-info h1 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: var(--secondary-dark); margin-bottom: 14px; }
.pd-rating { color: var(--gold); margin-bottom: 18px; letter-spacing: 1px; }
.pd-rating span { color: var(--ink-faint); font-weight: 600; margin-inline-start: 8px; font-size: .9rem; }
.pd-price { font-size: 2.2rem; font-weight: 800; color: var(--primary); margin-bottom: 20px; }
.pd-price .old { font-size: 1.1rem; color: var(--ink-faint); text-decoration: line-through; font-weight: 600; margin-inline-start: 12px; }
.pd-desc { color: var(--ink-soft); line-height: 1.85; margin-bottom: 24px; }
.pd-feats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pd-feats li { display: flex; align-items: center; gap: 12px; color: var(--secondary-dark); font-weight: 600; }
.pd-feats li i { width: 34px; height: 34px; border-radius: 50%; background: var(--bg-warm); color: var(--gold-deep); display: grid; place-items: center; }
.pd-buy { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.pd-buy .qty-stepper { background: #fff; }
.pd-buy .qty-stepper .qty-btn { width: 44px; height: 48px; }
.pd-meta { border-top: 1px solid var(--line); padding-top: 20px; display: flex; flex-direction: column; gap: 10px; font-size: .92rem; color: var(--ink-soft); }
.pd-meta b { color: var(--secondary-dark); }

/* ============================================================
   CONTACT / ABOUT / ACCOUNT
   ============================================================ */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.info-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 32px 26px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.info-card .ic { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center; font-size: 1.4rem; color: #fff; background: linear-gradient(135deg, var(--primary), var(--secondary)); }
.info-card h4 { color: var(--secondary-dark); margin-bottom: 8px; }
.info-card p { color: var(--ink-soft); font-size: .96rem; }
.info-card a { color: var(--primary); font-weight: 700; }
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.about-story { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-img { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/3; background: var(--bg-warm); }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.value-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.value-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-md); padding: 28px 22px; box-shadow: var(--shadow-sm); }
.value-card .vic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 1.3rem; color: #fff; background: linear-gradient(135deg, var(--gold-deep), var(--gold)); margin-bottom: 16px; }
.value-card h4 { color: var(--secondary-dark); margin-bottom: 8px; }
.value-card p { color: var(--ink-soft); font-size: .92rem; }
.auth-card { max-width: 460px; margin: 0 auto; background: var(--surface); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-md); padding: 38px; }
.auth-tabs { display: flex; gap: 8px; background: var(--bg-warm); padding: 6px; border-radius: var(--r-pill); margin-bottom: 28px; }
.auth-tabs button { flex: 1; border: none; background: transparent; cursor: pointer; font-family: var(--font); font-weight: 700; font-size: 1rem; padding: 11px; border-radius: var(--r-pill); color: var(--ink-soft); transition: all .25s; }
.auth-tabs button.active { background: var(--surface); color: var(--primary); box-shadow: var(--shadow-sm); }
.auth-form { display: none; flex-direction: column; gap: 16px; }
.auth-form.active { display: flex; }

@media (max-width: 980px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-aside { position: static; }
  .filter-list { flex-direction: row; flex-wrap: wrap; }
  .filter-list button { padding: 9px 14px; }
  .cart-layout { grid-template-columns: 1fr; }
  .summary-card { position: static; }
  .pd-layout { grid-template-columns: 1fr; gap: 30px; }
  .pd-gallery { position: static; }
  .contact-layout, .about-story { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  #shop-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .info-grid { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  #shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .cart-row { grid-template-columns: 64px 1fr auto; grid-template-areas: "img info del" "img qty total"; gap: 12px; }
  .cart-row-img { width: 64px; height: 64px; grid-area: img; }
  .cart-row-info { grid-area: info; }
  .cart-row .qty-stepper { grid-area: qty; }
  .cart-row-total { grid-area: total; text-align: end; }
  .cart-row-del { grid-area: del; }
}
@media (max-width: 420px) { #shop-grid { grid-template-columns: 1fr; } }

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
