/* Perfume Bar by SY — luxury beauty landing */

:root {
  --ink: #0E0B0A;
  --ink-soft: #2A2422;
  --cream: #FBF7F1;
  --cream-2: #F4EEE3;
  --champagne: #E8DCC4;
  --blush: #F4E4DD;
  --blush-deep: #E8C9BD;
  --gold: #C9A961;
  --gold-deep: #A8893F;
  --gold-soft: #E5D2A0;
  --line: rgba(14, 11, 10, 0.08);
  --line-strong: rgba(14, 11, 10, 0.16);
  --shadow-sm: 0 1px 2px rgba(14,11,10,.04), 0 4px 14px rgba(14,11,10,.06);
  --shadow-md: 0 6px 24px rgba(14,11,10,.08), 0 2px 6px rgba(14,11,10,.05);
  --shadow-lg: 0 30px 80px -20px rgba(14,11,10,.25), 0 10px 30px rgba(14,11,10,.08);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Helvetica Neue", sans-serif;
  --r-card: 28px;
  --r-pill: 999px;
  --r-btn: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

.serif { font-family: var(--serif); font-weight: 400; }
.italic { font-style: italic; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 720px) {
  .container { padding: 0 20px; }
}

/* ───── Announcement bar ───── */
.announce {
  background: var(--ink);
  color: var(--cream);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  position: relative;
  overflow: hidden;
}
.announce-track {
  display: inline-flex;
  gap: 60px;
  align-items: center;
}
.announce-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ───── Navbar ───── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 241, 0.85);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 24px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-mark {
  font-family: var(--serif);
  font-style: normal;
  font-weight: 600;
  font-size: 30px;
  letter-spacing: 0.08em;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-top: 5px;
}
.nav-links {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.nav-link {
  position: relative;
  padding: 6px 0;
  color: var(--ink-soft);
  transition: color .2s;
}
.nav-link:hover { color: var(--ink); }
.nav-link.active { color: var(--ink); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .2s;
}
.icon-btn:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: var(--gold);
  color: var(--ink);
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--cream);
}
.menu-btn { display: none; }

@media (max-width: 920px) {
  .nav-links { display: none; }
  .menu-btn { display: inline-flex; }
}

/* ───── Buttons ───── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--gold-deep);
  color: var(--cream);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(168,137,63,.3);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 10px 24px rgba(201,169,97,.35); }
.btn-sm { padding: 11px 18px; font-size: 11px; letter-spacing: 0.16em; }
.btn-arrow { font-size: 14px; transition: transform .25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ───── Hero ───── */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.hero-eyebrow .line {
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
  padding-bottom: 6px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 .gold-accent {
  color: var(--gold-deep);
  font-style: italic;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 460px;
  margin: 0 0 36px;
  text-wrap: pretty;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.stat-num {
  font-family: var(--serif);
  font-size: 32px;
  line-height: 1;
  color: var(--ink);
}
.stat-num em { color: var(--gold-deep); font-style: normal; }
.stat-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 8px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual::before { content: none; }
.hero-visual::after { content: none; }
.hero-bottle-wrap {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 40px 50px rgba(14,11,10,.18));
}
.hero-photo {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 100%;
  max-width: 100%;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(14,11,10,.04);
  border: 6px solid #fff;
  background: #fff;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.hero-particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(201,169,97,.7);
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: .6; }
  50% { transform: translateY(-22px) translateX(10px); opacity: 1; }
}
.hero-leaf {
  position: absolute;
  z-index: 4;
  opacity: 0.85;
  pointer-events: none;
}

@media (max-width: 920px) {
  .hero { padding: 40px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { aspect-ratio: 1 / 1.05; max-width: 480px; margin: 0 auto; }
  .hero-stats { gap: 24px; }
}

/* ───── Bottle SVG container ───── */
.bottle-svg { width: 78%; height: auto; max-height: 540px; }
.bottle-svg.product { width: 64%; }

/* ───── Section title ───── */
.section { padding: 100px 0; }
.section-narrow { padding: 80px 0; }
.section-head {
  text-align: center;
  margin-bottom: 56px;
}
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin: 14px 0 14px;
  text-wrap: balance;
}
.section-head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.section-head p {
  color: var(--ink-soft);
  max-width: 540px;
  margin: 0 auto;
  font-size: 16px;
}
.section-head.left { text-align: left; }
.section-head.left p { margin-left: 0; }

/* ───── Categories ───── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cat-card {
  position: relative;
  border-radius: var(--r-card);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  cursor: pointer;
  transition: transform .35s ease;
  border: 1px solid var(--line);
}
.cat-card:hover { transform: translateY(-4px); }
.cat-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cat-card.women .cat-bg { background: linear-gradient(160deg, var(--blush) 0%, var(--blush-deep) 100%); }
.cat-card.men .cat-bg { background: linear-gradient(160deg, #2D2826 0%, var(--ink) 100%); }
.cat-card.unisex .cat-bg { background: linear-gradient(160deg, var(--cream-2) 0%, var(--champagne) 100%); }
.cat-card.packs .cat-bg { background: linear-gradient(160deg, var(--gold-soft) 0%, var(--gold) 100%); }

.cat-content {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 2;
}
.cat-card.men .cat-content { color: var(--cream); }
.cat-card.men .cat-count, .cat-card.men .cat-arrow { color: var(--cream); }
.cat-name {
  font-family: var(--serif);
  font-size: 30px;
  letter-spacing: -0.01em;
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,.18);
}
.cat-count {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  text-shadow: 0 1px 8px rgba(0,0,0,.14);
}
.cat-arrow {
  align-self: flex-end;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: transform .3s;
  border: 1px solid rgba(14,11,10,.1);
}
.cat-card:hover .cat-arrow { transform: translate(2px, -2px); background: var(--ink); color: var(--cream); border-color: var(--ink); }
.cat-bottle-bg {
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 75%;
  opacity: 0.55;
  z-index: 1;
}

@media (max-width: 920px) {
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───── Best sellers ───── */
.bestseller-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-strong);
  background: transparent;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: all .2s;
}
.tab-btn:hover { color: var(--ink); border-color: var(--ink); }
.tab-btn.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1080px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 820px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .product-grid { grid-template-columns: 1fr; } }

.product {
  position: relative;
  background: #fff;
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .35s ease, box-shadow .35s ease;
  display: flex;
  flex-direction: column;
}
.product:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-img {
  position: relative;
  aspect-ratio: 1 / 1.05;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  overflow: hidden;
}
.product-img.bg-blush { background: linear-gradient(160deg, #FBEDE6, var(--blush)); }
.product-img.bg-cream { background: linear-gradient(160deg, var(--cream), var(--cream-2)); }
.product-img.bg-gold { background: linear-gradient(160deg, #F5E8C9, var(--gold-soft)); }
.product-img.bg-ink { background: linear-gradient(160deg, #3A322E, var(--ink)); }
.product-img.bg-champagne { background: linear-gradient(160deg, #F2E8D2, var(--champagne)); }
.product-img.bg-rose { background: linear-gradient(160deg, #F0D6CC, var(--blush-deep)); }
.product-img::before {
  content: "";
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(255,255,255,.4) 0%, transparent 60%);
  border-radius: 50%;
}
.product-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  border-radius: var(--r-pill);
  background: var(--ink);
  color: var(--cream);
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}
.product-tag.gold {
  background: var(--gold);
  color: var(--ink);
}
.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.85);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all .2s;
}
.wishlist-btn:hover { background: #fff; transform: scale(1.08); }
.wishlist-btn.active { background: var(--ink); }
.wishlist-btn.active svg { fill: var(--gold); stroke: var(--gold); }
.product-bottle {
  position: relative;
  z-index: 1;
}
.product-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.product-cat {
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.product-name {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.005em;
}
.product-notes {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 2px;
}
.stars { color: var(--gold); letter-spacing: 1px; }
.product-foot {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
  color: var(--ink);
  white-space: nowrap;
}
.product-foot > div:first-child {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0 4px;
  min-width: 0;
}
.price-old {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-soft);
  text-decoration: line-through;
  margin-right: 8px;
  opacity: 0.65;
}
.add-btn {
  appearance: none;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-size: 18px;
}
.add-btn:hover {
  background: var(--ink);
  color: var(--cream);
}
.add-btn.added {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: var(--cream);
}

/* ───── Pack offer ───── */
.pack-offer {
  background: var(--ink);
  color: var(--cream);
  border-radius: 36px;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}
.pack-offer::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; height: 140%;
  background: radial-gradient(circle, rgba(201,169,97,.18) 0%, transparent 60%);
  pointer-events: none;
}
.pack-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.pack-content h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1;
  margin: 18px 0 22px;
  letter-spacing: -0.015em;
}
.pack-content h2 em { font-style: italic; color: var(--gold); }
.pack-content p {
  color: rgba(251,247,241,.75);
  margin-bottom: 32px;
  max-width: 440px;
  font-size: 16px;
}
.pack-features {
  display: flex;
  gap: 28px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.pack-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--cream);
}
.pack-feature .check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.pack-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pack-bottles {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
.pack-bottle-item {
  position: absolute;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,.4));
}
.pack-bottle-item.left { left: 8%; bottom: 12%; transform: rotate(-8deg); width: 28%; }
.pack-bottle-item.center { left: 50%; bottom: 18%; transform: translateX(-50%); width: 36%; z-index: 2; }
.pack-bottle-item.right { right: 8%; bottom: 12%; transform: rotate(8deg); width: 28%; }
.pack-ribbon {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 78%;
  height: 70%;
  border: 1px solid rgba(201,169,97,.4);
  border-radius: 50%;
  pointer-events: none;
}
.pack-price-tag {
  position: absolute;
  top: 10%;
  right: 4%;
  background: var(--gold);
  color: var(--ink);
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--serif);
  z-index: 5;
  transform: rotate(-12deg);
  box-shadow: 0 20px 40px rgba(201,169,97,.3);
}
.pack-price-tag .save { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-family: var(--sans); font-weight: 600; }
.pack-price-tag .num { font-size: 30px; line-height: 1; margin-top: 2px; }
.pack-price-tag .pct { font-size: 11px; letter-spacing: 0.18em; font-family: var(--sans); margin-top: 2px; }

@media (max-width: 920px) {
  .pack-offer { padding: 50px 28px; border-radius: 28px; }
  .pack-grid { grid-template-columns: 1fr; gap: 30px; }
  .pack-visual { aspect-ratio: 1 / 0.9; }
  .pack-price-tag { width: 86px; height: 86px; }
  .pack-price-tag .num { font-size: 22px; }
}

/* ───── Why choose us ───── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 36px 28px;
  border: 1px solid var(--line);
  transition: all .3s;
  text-align: left;
}
.why-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--gold-deep);
  border: 1px solid var(--gold-soft);
}
.why-title {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 8px;
  line-height: 1.15;
}
.why-text {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
}
@media (max-width: 920px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ───── Reviews ───── */
.reviews-section { background: var(--cream-2); }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: #fff;
  border-radius: var(--r-card);
  padding: 32px 30px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; }
.review-text {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.4;
  color: var(--ink);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--cream);
  font-weight: 500;
}
.review-meta { display: flex; flex-direction: column; }
.review-name { font-size: 13.5px; font-weight: 500; }
.review-product { font-size: 11.5px; color: var(--ink-soft); letter-spacing: 0.06em; }
.review-verified {
  margin-left: auto;
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
@media (max-width: 920px) {
  .review-grid { grid-template-columns: 1fr; }
}

/* ───── Footer ───── */
.footer {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(251,247,241,.1);
}
.footer-brand .logo-mark { color: var(--cream); font-size: 32px; }
.footer-brand .logo-sub { color: var(--gold); }
.footer-tagline {
  margin: 24px 0 28px;
  color: rgba(251,247,241,.65);
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: var(--r-pill);
  background: #25D366;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: transform .2s;
}
.whatsapp-btn:hover { transform: translateY(-2px); }
.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 22px;
  font-weight: 500;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(251,247,241,.7);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(251,247,241,.5);
  flex-wrap: wrap;
  gap: 16px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(251,247,241,.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: all .2s;
}
.footer-socials a:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
@media (max-width: 920px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; padding-bottom: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ───── Cart drawer ───── */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14,11,10,.45);
  backdrop-filter: blur(4px);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.drawer-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 440px;
  max-width: 100vw;
  background: var(--cream);
  z-index: 101;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 { margin: 0; font-family: var(--serif); font-size: 24px; font-weight: 400; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-close {
  appearance: none;
  border: 0;
  background: transparent;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-close:hover { background: rgba(0,0,0,.05); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 28px;
}
.cart-empty {
  text-align: center;
  padding: 80px 20px;
  color: var(--ink-soft);
}
.cart-empty-icon {
  font-size: 40px;
  margin-bottom: 16px;
  opacity: 0.4;
}
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: 14px;
  background: var(--blush);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cart-item-name { font-family: var(--serif); font-size: 17px; line-height: 1.2; }
.cart-item-meta { font-size: 11.5px; color: var(--ink-soft); margin-top: 4px; letter-spacing: 0.06em; text-transform: uppercase; }
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  margin-top: 10px;
}
.qty-control button {
  appearance: none;
  border: 0;
  background: transparent;
  width: 26px;
  height: 26px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.qty-control span { padding: 0 4px; min-width: 22px; text-align: center; font-size: 12.5px; }
.cart-item-right { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.cart-item-price { font-family: var(--serif); font-size: 17px; white-space: nowrap; }
.cart-item-remove {
  appearance: none;
  border: 0;
  background: transparent;
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cart-foot {
  padding: 22px 28px 28px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}
.cart-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--ink-soft);
}
.cart-row.total {
  font-size: 18px;
  color: var(--ink);
  margin: 14px 0 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
}
.cart-row.total .total-amount { font-size: 26px; white-space: nowrap; }
.shipping-progress {
  margin: 16px 0 22px;
  padding: 14px 16px;
  background: var(--cream-2);
  border-radius: 14px;
  font-size: 12.5px;
}
.progress-bar {
  height: 4px;
  background: var(--line);
  border-radius: 2px;
  margin-top: 10px;
  overflow: hidden;
}
.progress-bar i {
  display: block;
  height: 100%;
  background: var(--gold);
  transition: width .4s;
}

/* ───── Checkout ───── */
.checkout-body { padding: 20px 28px 28px; }

.checkout-back {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
}
.checkout-back:hover { color: var(--ink); }

.checkout-section {
  padding: 22px 0 24px;
  border-top: 1px solid var(--line);
}
.checkout-section:first-of-type { border-top: 0; padding-top: 0; }
.checkout-section-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 18px;
}
.checkout-step {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-deep);
  line-height: 1;
}
.checkout-section-head h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.1;
  white-space: nowrap;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.form-optional {
  text-transform: none;
  letter-spacing: 0.04em;
  color: rgba(14,11,10,.4);
  font-weight: 400;
  font-size: 11px;
}
.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: 14px var(--sans);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  font-family: var(--sans);
}
.form-field textarea {
  resize: vertical;
  min-height: 56px;
  line-height: 1.45;
  font-family: var(--sans);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14,11,10,.05);
}
.form-field input[data-invalid="1"],
.form-field select[data-invalid="1"],
.form-field textarea[data-invalid="1"] {
  border-color: #C04437;
  background: #FDF6F4;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%230E0B0A' d='M0 0h12L6 8z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.form-err {
  font-size: 11.5px;
  color: #C04437;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.form-err::before {
  content: "⚠";
  font-size: 12px;
}

.form-phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: border-color .15s, box-shadow .15s;
}
.form-phone:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(14,11,10,.05);
}
.form-phone:has(input[data-invalid="1"]) {
  border-color: #C04437;
  background: #FDF6F4;
}
.form-phone-flag {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  font-size: 18px;
  background: var(--cream-2);
  border-right: 1px solid var(--line);
}
.form-phone input {
  flex: 1;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.payment-card {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 18px 18px;
  border: 1.5px solid var(--ink);
  border-radius: 16px;
  background: #fff;
  position: relative;
}
.payment-card.selected {
  background: linear-gradient(135deg, #fff 0%, var(--cream-2) 100%);
}
.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.payment-radio span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink);
}
.payment-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--cream-2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  border: 1px solid var(--gold-soft);
}
.payment-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.payment-title {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.1;
}
.payment-sub {
  font-size: 12.5px;
  color: var(--ink-soft);
}
.payment-badge {
  font-size: 9.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
  white-space: nowrap;
}

.summary-card {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ink-soft);
}
.summary-row.total {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  font-family: var(--serif);
  font-size: 18px;
  color: var(--ink);
}
.summary-row.total .total-amount { font-size: 24px; white-space: nowrap; }

.trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37, 211, 102, 0.08);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: #14633A;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 12.5px;
  margin: 18px 0 16px;
  line-height: 1.45;
}
.trust-note svg { color: #25D366; flex-shrink: 0; }

.checkout-confirm {
  width: 100%;
  margin-top: 4px;
}
.checkout-confirm:disabled {
  background: rgba(14,11,10,.18);
  color: rgba(255,255,255,.7);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.checkout-confirm:disabled:hover {
  background: rgba(14,11,10,.18);
  transform: none;
  box-shadow: none;
}

/* ───── Checkout success ───── */
.checkout-success {
  text-align: center;
  padding: 16px 4px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.success-mark {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 22px;
  box-shadow: 0 12px 32px rgba(201,169,97,.35);
  animation: success-pop .5s cubic-bezier(.34, 1.56, .64, 1);
}
@keyframes success-pop {
  0% { transform: scale(.5); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.success-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 32px;
  line-height: 1.18;
  margin: 14px 0 14px;
  padding-bottom: 4px;
  letter-spacing: -0.015em;
}
.success-msg {
  color: var(--ink-soft);
  font-size: 14.5px;
  max-width: 340px;
  margin: 0 auto 24px;
  line-height: 1.55;
  text-wrap: pretty;
}
.success-card {
  width: 100%;
  background: var(--cream-2);
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 4px;
}
.success-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.success-row + .success-row {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.success-row > span:last-child {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink);
  font-weight: 500;
  white-space: nowrap;
}

/* Mobile responsive checkout */
@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .checkout-body { padding: 16px 20px 24px; }
  .cart-head { padding: 20px 20px; }
  .payment-card { padding: 14px 14px; gap: 10px; }
  .payment-icon { width: 36px; height: 36px; }
  .payment-badge { display: none; }
  .success-title { font-size: 26px; }
}

/* Dark theme checkout overrides */
body[data-theme="dark"] .cart-drawer { background: #15110F; color: var(--cream); }
body[data-theme="dark"] .cart-head h3 { color: var(--cream); }
body[data-theme="dark"] .cart-close { color: var(--cream); }
body[data-theme="dark"] .form-field label { color: rgba(251,247,241,.65); }
body[data-theme="dark"] .form-field input,
body[data-theme="dark"] .form-field select,
body[data-theme="dark"] .form-field textarea {
  background: #1A1614;
  border-color: rgba(251,247,241,.12);
  color: var(--cream);
}
body[data-theme="dark"] .form-phone { background: #1A1614; border-color: rgba(251,247,241,.12); }
body[data-theme="dark"] .form-phone-flag { background: rgba(251,247,241,.05); border-right-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .payment-card { background: #1A1614; border-color: var(--gold); }
body[data-theme="dark"] .payment-card.selected { background: linear-gradient(135deg, #1A1614, #221A14); }
body[data-theme="dark"] .payment-radio { border-color: var(--gold); }
body[data-theme="dark"] .payment-radio span { background: var(--gold); }
body[data-theme="dark"] .payment-icon { background: rgba(201,169,97,.1); color: var(--gold); }
body[data-theme="dark"] .payment-title { color: var(--cream); }
body[data-theme="dark"] .summary-card { background: #1A1614; }
body[data-theme="dark"] .summary-row.total { color: var(--cream); border-top-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .success-card { background: #1A1614; }
body[data-theme="dark"] .success-row + .success-row { border-top-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .success-row > span:last-child { color: var(--cream); }
body[data-theme="dark"] .checkout-section { border-top-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .cart-foot { background: rgba(251,247,241,.03); border-top-color: rgba(251,247,241,.08); }

/* ───── Mobile menu ───── */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--cream);
  z-index: 102;
  transform: translateY(-100%);
  transition: transform .35s cubic-bezier(.4, 0, .2, 1);
  padding: 24px 0;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu .nav-link {
  display: block;
  padding: 16px 0;
  font-family: var(--serif);
  font-size: 28px;
  border-bottom: 1px solid var(--line);
}

/* ───── Toast ───── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink);
  color: var(--cream);
  padding: 14px 22px;
  border-radius: var(--r-pill);
  font-size: 13px;
  letter-spacing: 0.05em;
  z-index: 200;
  opacity: 0;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.toast .check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

/* ───── Marquee strip ───── */
.marquee {
  background: var(--cream-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 60px;
  animation: scroll 35s linear infinite;
  align-items: center;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 60px;
}
.marquee-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ───── Density variants ───── */
body[data-density="compact"] .section { padding: 64px 0; }
body[data-density="compact"] .hero { padding: 50px 0 60px; }
body[data-density="roomy"] .section { padding: 130px 0; }
body[data-density="roomy"] .hero { padding: 110px 0 130px; }

/* ───── Surface: white marble (marbre blanc) ───── */
body[data-surface="marble"] {
  --cream: #F4F2F0;
  --cream-2: #E9E6E3;
  background-color: #F1EFEC;
  background-image:
    linear-gradient(rgba(248,247,245,0.62), rgba(248,247,245,0.62)),
    url("assets/marble-bg.png");
  background-size: auto, 560px 560px;
  background-repeat: repeat, repeat;
  background-attachment: fixed, fixed;
}
/* Cards lift off the marble with a touch more crispness */
body[data-surface="marble"] .why-card,
body[data-surface="marble"] .product,
body[data-surface="marble"] .review-card {
  background: #FCFBFA;
}
body[data-surface="marble"] .reviews-section {
  background-color: #ECEAE7;
  background-image:
    linear-gradient(rgba(236,234,231,0.80), rgba(236,234,231,0.80)),
    url("assets/marble-bg.png");
  background-size: auto, 560px 560px;
}

/* ───── Surface: crisp white (blanc) ───── */
body[data-surface="snow"] {
  --cream: #FFFFFF;
  --cream-2: #F4F2F0;
  background: #FFFFFF;
}
body[data-surface="snow"] .why-card,
body[data-surface="snow"] .product,
body[data-surface="snow"] .review-card { background: #FFFFFF; }
body[data-surface="snow"] .reviews-section { background: #F4F2F0; }

/* ───── Accent: rose gold ───── */
/* Remaps the gold accent family to rose-gold tones (black + white + rose gold). */
body[data-accent="rosegold"] {
  --gold: #C58D95;
  --gold-deep: #9E6670;
  --gold-soft: #ECCBCF;
  --blush: #F4E1E2;
  --blush-deep: #E6C2C6;
}
body[data-accent="rosegold"] .product-img.bg-gold { background: linear-gradient(160deg, #F3DADD, #E3B6BC); }
body[data-accent="rosegold"] .product-img.bg-champagne { background: linear-gradient(160deg, #F6E4E5, #EAC9CD); }
body[data-accent="rosegold"][data-theme="dark"] .btn-primary { background: var(--gold); }
body[data-accent="rosegold"][data-theme="dark"] .btn-primary:hover { background: var(--gold-soft); }

/* Rose gold as the primary / number-one colour — promote it onto the main CTAs,
   tag chips and hero so it leads the palette instead of sitting as an accent. */
body[data-accent="rosegold"] .btn-primary {
  background: linear-gradient(135deg, #C99098 0%, #9E6670 60%, #8A5560 100%);
  color: #fff;
}
body[data-accent="rosegold"] .btn-primary:hover {
  background: linear-gradient(135deg, #D49DA4 0%, #A8707A 60%, #95606A 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(158,102,112,.34);
}
body[data-accent="rosegold"] .product-tag:not(.gold) {
  background: linear-gradient(135deg, #B47A83, #8A5560);
  color: #fff;
}
body[data-accent="rosegold"] .nav-link.active { color: var(--gold-deep); }
body[data-accent="rosegold"] .nav-link.active::after { background: var(--gold); }
body[data-accent="rosegold"] .add-btn:hover { background: var(--gold-deep); border-color: var(--gold-deep); color: #fff; }
body[data-accent="rosegold"] .whatsapp-btn { /* keep WhatsApp green */ }

/* ───── Accent: monochrome (noir & blanc / silver) ───── */
/* Designed for the dark theme — turns gold accents into soft silver-white. */
body[data-accent="mono"] {
  --gold: #EDEAE6;
  --gold-deep: #FFFFFF;
  --gold-soft: #BFBBB5;
  --blush: #E4E2DF;
  --blush-deep: #C9C6C2;
}
body[data-accent="mono"] .btn-primary { background: var(--gold); color: var(--ink); }
body[data-accent="mono"] .btn-primary:hover { background: #fff; color: var(--ink); box-shadow: none; }
body[data-accent="mono"] .product-tag:not(.gold) { background: #fff; color: var(--ink); }
body[data-accent="mono"] .nav-link.active::after { background: var(--gold); }
/* Desaturate product / pack imagery for a true black & white look.
   The hero photo stays in colour (it pops against the black marble). */
body[data-accent="mono"] .product-img,
body[data-accent="mono"] .pdp-stage,
body[data-accent="mono"] .pdp-thumb,
body[data-accent="mono"] .pack-bottle-item,
body[data-accent="mono"] .cat-bottle-bg,
body[data-accent="mono"] .cart-item-img {
  filter: grayscale(1) contrast(1.02);
}
/* Decorative gold leaves → silver in mono */
body[data-accent="mono"] .hero-visual svg { filter: grayscale(1) brightness(1.6); }
/* Neutralise warm glows in the pack section */
body[data-accent="mono"] .pack-offer::before { background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 60%); }
body[data-accent="mono"] .pack-ribbon { border-color: rgba(255,255,255,.22); }
body[data-accent="mono"] .pack-bottle-item { filter: grayscale(1) brightness(1.05) drop-shadow(0 30px 40px rgba(0,0,0,.5)); }
/* Category tiles → neutral greys instead of blush/gold */
body[data-accent="mono"] .cat-card.women .cat-bg,
body[data-accent="mono"] .cat-card.unisex .cat-bg,
body[data-accent="mono"] .cat-card.packs .cat-bg { background: linear-gradient(160deg, #2A2A2A, #161616); }
body[data-accent="mono"] .cat-card.men .cat-bg { background: linear-gradient(160deg, #1E1E1E, #0A0A0A); }

/* ───── Dark marble surface (black marble under the dark theme) ───── */
body[data-theme="dark"][data-surface="marble"] {
  background-color: #0B0B0B;
  background-image:
    linear-gradient(rgba(10,10,10,0.55), rgba(10,10,10,0.55)),
    url("assets/marble-dark.png");
  background-size: auto, 560px 560px;
  background-repeat: repeat, repeat;
  background-attachment: fixed, fixed;
}
body[data-theme="dark"][data-surface="marble"] .reviews-section {
  background-color: #121212;
  background-image:
    linear-gradient(rgba(15,15,15,0.78), rgba(15,15,15,0.78)),
    url("assets/marble-dark.png");
  background-size: auto, 560px 560px;
}
/* Product image wells go dark in the noir theme so they sit on the cards */
body[data-theme="dark"] .product-img { background: linear-gradient(160deg, #232323, #141414) !important; }
body[data-theme="dark"] .product-img.bg-ink { background: linear-gradient(160deg, #1A1A1A, #060606) !important; }
body[data-theme="dark"] .wishlist-btn { background: rgba(255,255,255,.14); }
body[data-theme="dark"] .wishlist-btn svg { stroke: #fff; }
body[data-theme="dark"] .cart-item-img { background: #222; }
/* Dark-theme cart drawer — keep panel + text readable */
body[data-theme="dark"] .cart-drawer { background: #16110F; color: var(--cream); }
body[data-theme="dark"] .cart-head { border-bottom-color: rgba(251,247,241,.1); }
body[data-theme="dark"] .cart-head h3 { color: var(--cream); }
body[data-theme="dark"] .cart-close { color: var(--cream); }
body[data-theme="dark"] .cart-close:hover { background: rgba(255,255,255,.08); }
body[data-theme="dark"] .cart-item { border-bottom-color: rgba(251,247,241,.1); }
body[data-theme="dark"] .cart-item-name { color: var(--cream); }
body[data-theme="dark"] .cart-item-meta { color: rgba(251,247,241,.55); }
body[data-theme="dark"] .cart-item-price { color: var(--cream); }
body[data-theme="dark"] .cart-item-remove { color: rgba(251,247,241,.55); }
body[data-theme="dark"] .qty-control { border-color: rgba(251,247,241,.2); }
body[data-theme="dark"] .qty-control span { color: var(--cream); }
body[data-theme="dark"] .shipping-progress { background: rgba(255,255,255,.06); color: rgba(251,247,241,.85); }
body[data-theme="dark"] .progress-bar { background: rgba(255,255,255,.12); }
body[data-theme="dark"] .cart-foot { background: rgba(255,255,255,.03); border-top-color: rgba(251,247,241,.1); }
body[data-theme="dark"] .cart-row { color: rgba(251,247,241,.7); }
body[data-theme="dark"] .cart-row.total { color: var(--cream); border-top-color: rgba(251,247,241,.1); }
body[data-theme="dark"] .cart-empty { color: rgba(251,247,241,.6); }
body[data-theme="dark"] .cart-empty .serif { color: var(--cream); }

/* ───── Theme: dark ───── */
body[data-theme="dark"] {
  background: var(--ink);
  color: var(--cream);
}
body[data-theme="dark"] .nav {
  background: rgba(14,11,10,.85);
  border-bottom-color: rgba(251,247,241,.08);
}
body[data-theme="dark"] .nav-link { color: rgba(251,247,241,.7); }
body[data-theme="dark"] .nav-link:hover { color: var(--cream); }
body[data-theme="dark"] .nav-link.active { color: var(--cream); }
body[data-theme="dark"] .icon-btn {
  background: rgba(251,247,241,.05);
  border-color: rgba(251,247,241,.12);
  color: var(--cream);
}
body[data-theme="dark"] .cart-badge { border-color: var(--ink); }
body[data-theme="dark"] .hero h1 { color: var(--cream); }
body[data-theme="dark"] .hero-sub { color: rgba(251,247,241,.7); }
body[data-theme="dark"] .stat-num { color: var(--cream); }
body[data-theme="dark"] .stat-label { color: rgba(251,247,241,.6); }
body[data-theme="dark"] .btn-ghost { color: var(--cream); border-color: var(--cream); }
body[data-theme="dark"] .btn-primary { background: var(--gold); color: var(--ink); }
body[data-theme="dark"] .btn-primary:hover { background: var(--gold-soft); }
body[data-theme="dark"] .section-head h2 { color: var(--cream); }
body[data-theme="dark"] .section-head p { color: rgba(251,247,241,.7); }
body[data-theme="dark"] .product { background: #1A1614; border-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .product-name { color: var(--cream); }
body[data-theme="dark"] .product-notes { color: rgba(251,247,241,.6); }
body[data-theme="dark"] .product-rating { color: rgba(251,247,241,.6); }
body[data-theme="dark"] .price { color: var(--cream); }
body[data-theme="dark"] .add-btn { border-color: var(--cream); color: var(--cream); }
body[data-theme="dark"] .add-btn:hover { background: var(--cream); color: var(--ink); }
body[data-theme="dark"] .why-card { background: #1A1614; border-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .why-title { color: var(--cream); }
body[data-theme="dark"] .why-text { color: rgba(251,247,241,.6); }
body[data-theme="dark"] .why-icon { background: rgba(201,169,97,.1); border-color: rgba(201,169,97,.2); }
body[data-theme="dark"] .reviews-section { background: #15110F; }
body[data-theme="dark"] .review-card { background: #1A1614; border-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .review-text { color: var(--cream); }
body[data-theme="dark"] .review-name { color: var(--cream); }
body[data-theme="dark"] .review-product { color: rgba(251,247,241,.55); }
body[data-theme="dark"] .review-author { border-top-color: rgba(251,247,241,.08); }
body[data-theme="dark"] .marquee { background: #15110F; border-color: rgba(251,247,241,.06); }
body[data-theme="dark"] .marquee-item { color: rgba(251,247,241,.5); }
body[data-theme="dark"] .tab-btn { color: rgba(251,247,241,.6); border-color: rgba(251,247,241,.12); }
body[data-theme="dark"] .tab-btn:hover { color: var(--cream); border-color: var(--cream); }
body[data-theme="dark"] .tab-btn.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Button shape variants */
body[data-btn-shape="square"] .btn { border-radius: 4px; }
body[data-btn-shape="square"] .add-btn { border-radius: 8px; }
body[data-btn-shape="square"] .icon-btn { border-radius: 8px; }
body[data-btn-shape="rounded"] .btn { border-radius: 14px; }
body[data-btn-shape="rounded"] .add-btn { border-radius: 12px; }
