/* ============================================================
   THE NEW U — Premium Design System
   Pure CSS · No framework
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300;1,9..40,400&family=DM+Mono:wght@300;400;500&display=swap');

/* ── Tokens ─────────────────────────────────────── */
:root {
  --plum:        #1E0F28;
  --plum-mid:    #2D1B35;
  --plum-light:  #3d2648;
  --rose:        #C8956A;
  --rose-light:  #DFB695;
  --rose-dark:   #A8744D;
  --gold:        #D4AA6B;
  --blush:       #F5EDE8;
  --blush-dark:  #EBD9D0;
  --ivory:       #FAF8F5;
  --ivory-dark:  #F2EDE7;
  --muted:       #9B8E8A;
  --muted-light: #C4B8B4;
  --error:       #C94B4B;
  --success:     #4B9C7A;
  --wa-green:    #25D366;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:    cubic-bezier(0.0, 0.0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

  --section: clamp(4.5rem, 9vw, 8rem);
  --pad:     clamp(1.25rem, 4vw, 2.5rem);
  --max:     1280px;
  --radius:  1rem;
}

/* ── Reset ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--plum);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--rose); color: var(--ivory); }

/* ── Scrollbar ──────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--blush); }
::-webkit-scrollbar-thumb { background: var(--rose); border-radius: 3px; }

/* ── Layout ─────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--pad);
}
.section { padding-block: var(--section); }
.section--plum { background: var(--plum); }
.section--blush { background: var(--blush); }
.section--ivory-dark { background: var(--ivory-dark); }

/* ── Typography ─────────────────────────────────── */
.display-hero {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7.5vw, 6.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.015em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 400;
  line-height: 1.1;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1.15;
}
.display-sm {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}
.label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.price {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: -0.02em;
}

/* ── Gold gradient text ─────────────────────────── */
.text-gold {
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 50%, var(--rose-light) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease infinite;
}
@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ── Divider ─────────────────────────────────────── */
.gold-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  border: none;
}

/* ── Announcement Bar ────────────────────────────── */
#announcement {
  background: var(--plum);
  color: var(--ivory);
  text-align: center;
  padding: 0.625rem var(--pad);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  position: relative;
  z-index: 200;
}
#announcement a { color: var(--gold); text-decoration: underline; }

/* ── Navbar ──────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: all 0.35s var(--ease);
  padding-block: 1.25rem;
}
#navbar.scrolled {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--blush-dark);
  padding-block: 0.875rem;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--ivory);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}
#navbar.scrolled .nav-logo { color: var(--plum); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-size: 0.875rem;
  color: rgba(250,248,245,0.85);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--ivory); }
#navbar.scrolled .nav-links a { color: var(--muted); }
#navbar.scrolled .nav-links a:hover { color: var(--plum); }

.nav-actions { display: flex; align-items: center; gap: 0.375rem; }
.nav-btn {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,245,0.9);
  transition: all 0.2s;
}
#navbar.scrolled .nav-btn { color: var(--plum); }
.nav-btn:hover { background: rgba(255,255,255,0.12); }
#navbar.scrolled .nav-btn:hover { background: var(--blush); }
.nav-cart-btn { position: relative; }
.cart-badge {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 1.125rem;
  height: 1.125rem;
  background: var(--rose);
  color: white;
  font-size: 0.625rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: scale(0);
  transition: transform 0.3s var(--ease-spring);
}
.cart-badge.visible { transform: scale(1); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  color: var(--ivory);
}
#navbar.scrolled .nav-hamburger { color: var(--plum); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: currentColor;
  transition: all 0.3s;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 99;
  pointer-events: none;
}
.nav-drawer.open { pointer-events: all; }
.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30,15,40,0.5);
  opacity: 0;
  transition: opacity 0.3s;
}
.nav-drawer.open .drawer-backdrop { opacity: 1; }
.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 18rem;
  background: var(--ivory);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 0.5rem;
}
.nav-drawer.open .drawer-panel { transform: translateX(0); }
.drawer-close {
  align-self: flex-end;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 1.5rem;
}
.drawer-nav { display: flex; flex-direction: column; gap: 0.25rem; }
.drawer-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum);
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}
.drawer-nav a:hover { background: var(--blush); color: var(--rose-dark); }

/* ── Buttons ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 0.875rem;
  padding: 0 1.75rem;
  height: 3.25rem;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  letter-spacing: 0.01em;
  white-space: nowrap;
  border: none;
  text-decoration: none;
}
.btn:active { transform: scale(0.975); }
.btn--primary {
  background: var(--rose);
  color: var(--ivory);
  box-shadow: 0 2px 12px -2px rgba(200,149,106,0.35);
}
.btn--primary:hover {
  background: var(--rose-dark);
  box-shadow: 0 4px 20px -4px rgba(200,149,106,0.45);
}
.btn--dark {
  background: var(--plum);
  color: var(--ivory);
}
.btn--dark:hover { background: var(--plum-light); }
.btn--outline {
  border: 1.5px solid var(--rose);
  color: var(--rose);
  background: transparent;
}
.btn--outline:hover { background: var(--rose); color: var(--ivory); }
.btn--outline-ivory {
  border: 1.5px solid rgba(250,248,245,0.35);
  color: var(--ivory);
  background: transparent;
}
.btn--outline-ivory:hover { background: rgba(250,248,245,0.1); }
.btn--ghost { color: var(--plum); background: transparent; }
.btn--ghost:hover { background: var(--blush); }
.btn--wa {
  background: var(--wa-green);
  color: white;
  box-shadow: 0 2px 12px -2px rgba(37,211,102,0.3);
}
.btn--wa:hover { background: #1ebe59; box-shadow: 0 4px 20px -4px rgba(37,211,102,0.4); }
.btn--lg { height: 3.75rem; padding: 0 2.25rem; font-size: 0.975rem; border-radius: 1.125rem; }
.btn--sm { height: 2.5rem; padding: 0 1.25rem; font-size: 0.8125rem; border-radius: 0.75rem; }
.btn--full { width: 100%; }
.btn--loading { opacity: 0.7; pointer-events: none; }
.btn svg { flex-shrink: 0; }

/* ── Section header ──────────────────────────────── */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .eyebrow {
  color: var(--rose);
  margin-bottom: 0.875rem;
}
.section-header.left { text-align: left; }

/* ── Product Card ────────────────────────────────── */
.product-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.product-card__img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--blush);
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

.product-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--rose);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 2rem;
  z-index: 2;
}
.product-card__badge--low { background: var(--rose); }
.product-card__badge--out {
  background: rgba(30,15,40,0.7);
  backdrop-filter: blur(4px);
}

.product-card__wish {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.25s var(--ease);
  border: none;
  cursor: pointer;
  opacity: 0;
}
.product-card:hover .product-card__wish { opacity: 1; }
.product-card__wish:hover { transform: scale(1.15); background: white; }
.product-card__wish.active svg { fill: var(--rose); color: var(--rose); }

.product-card__cta {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(to top, rgba(30,15,40,0.85) 0%, transparent 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
  border-radius: 0 0 var(--radius) var(--radius);
}
.product-card:hover .product-card__cta { transform: translateY(0); }
.cta-add {
  flex: 1;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: white;
  color: var(--plum);
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.cta-add:hover { background: var(--rose); color: white; }
.cta-wa {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--wa-green);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.cta-wa:hover { background: #1ebe59; }

.product-card__info { padding: 1rem 0.25rem 0; }
.product-card__cat {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 0.3rem;
}
.product-card__name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--plum);
  line-height: 1.25;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-card__price {
  font-family: var(--font-mono);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--plum);
}
.product-card__rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--muted);
}
.product-card__rating svg { color: var(--gold); fill: var(--gold); }

/* ── Product Grid ────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 640px)  { .product-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 2rem; } }

/* ── Hero ────────────────────────────────────────── */
#hero {
  min-height: 100svh;
  background: var(--plum);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
}
@media (min-width: 1024px) {
  #hero { grid-template-columns: 1fr 1fr; }
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  top: -10%;  right: -5%;
  background: radial-gradient(circle, rgba(200,149,106,0.18) 0%, transparent 70%);
}
.hero-glow-2 {
  width: 400px; height: 400px;
  bottom: -10%; left: 20%;
  background: radial-gradient(circle, rgba(212,170,107,0.1) 0%, transparent 70%);
}

.hero-content {
  padding: var(--pad);
  padding-top: 2rem;
  padding-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  animation: fadeUp 0.9s var(--ease) both;
}
@media (min-width: 1024px) {
  .hero-content {
    padding: clamp(2rem,5vw,5rem);
    max-width: 640px;
    margin-left: auto;
    margin-right: 0;
    padding-right: clamp(1rem,3vw,3rem);
  }
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--rose-light);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 8vw, 6.5rem);
  font-weight: 300;
  line-height: 0.97;
  letter-spacing: -0.02em;
  color: var(--ivory);
}
.hero-title em { font-style: italic; }
.hero-subtitle {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(250,248,245,0.65);
  max-width: 28rem;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; }
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding-top: 0.5rem;
}
.proof-avatars {
  display: flex;
  align-items: center;
}
.proof-avatars span {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid var(--plum);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 700;
  color: white;
  margin-left: -6px;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text { font-size: 0.8rem; color: rgba(250,248,245,0.6); line-height: 1.4; }
.proof-stars { display: flex; gap: 1px; }
.proof-stars svg { width: 12px; height: 12px; fill: var(--gold); color: var(--gold); }

.hero-visual {
  position: relative;
  height: 50vh;
  overflow: hidden;
  z-index: 1;
}
@media (min-width: 1024px) {
  .hero-visual {
    height: 100vh;
    order: -1;
  }
}
.hero-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  height: 100%;
}
.hero-img-grid .img-a {
  grid-row: 1 / 3;
  border-radius: 1rem;
  overflow: hidden;
}
.hero-img-grid .img-b,
.hero-img-grid .img-c {
  border-radius: 0.75rem;
  overflow: hidden;
}
.hero-img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-float {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(8px);
  border-radius: 1rem;
  padding: 0.875rem 1.125rem;
  box-shadow: 0 8px 32px -8px rgba(30,15,40,0.3);
  min-width: 160px;
  z-index: 5;
}
@media (min-width: 1024px) {
  .hero-float { bottom: 2.5rem; right: 2rem; }
}
.hero-float__label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted); }
.hero-float__name { font-family: var(--font-display); font-size: 0.95rem; font-weight: 500; color: var(--plum); margin-block: 0.2rem; }
.hero-float__price { font-family: var(--font-mono); font-size: 1.1rem; font-weight: 600; color: var(--rose); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 10;
}
.hero-scroll span { font-size: 0.6rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(250,248,245,0.4); }
.hero-scroll-line { width: 1px; height: 3.5rem; background: linear-gradient(to bottom, rgba(250,248,245,0.4), transparent); }

/* ── Trust Bar ────────────────────────────────────── */
.trust-bar {
  background: var(--blush);
  border-top: 1px solid var(--blush-dark);
  border-bottom: 1px solid var(--blush-dark);
  padding-block: 1.5rem;
}
.trust-bar-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .trust-bar-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { text-align: center; }
.trust-item__val {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--plum);
  line-height: 1;
}
.trust-item__label { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

/* ── Marquee ──────────────────────────────────────── */
.marquee-wrap {
  background: var(--rose);
  overflow: hidden;
  padding-block: 0.875rem;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-inline: 1.5rem;
  white-space: nowrap;
  font-size: 0.7875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory);
}
.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(250,248,245,0.5);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Categories ───────────────────────────────────── */
.categories-scroll {
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }
.categories-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  padding: 0.25rem 0;
}
.category-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
  padding: 1.5rem 1.25rem;
  border-radius: 1.25rem;
  background: var(--blush);
  border: 1.5px solid transparent;
  width: 9.5rem;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  cursor: pointer;
}
.category-card:hover, .category-card.active {
  background: var(--plum);
  border-color: var(--plum);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px -8px rgba(30,15,40,0.25);
}
.category-card__emoji { font-size: 2rem; }
.category-card__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--plum);
  transition: color 0.3s;
}
.category-card__desc { font-size: 0.7rem; color: var(--muted); transition: color 0.3s; }
.category-card:hover .category-card__name,
.category-card.active .category-card__name { color: var(--ivory); }
.category-card:hover .category-card__desc,
.category-card.active .category-card__desc { color: rgba(250,248,245,0.6); }

/* ── Brand Story ─────────────────────────────────── */
.brand-story {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 32rem;
}
@media (min-width: 768px) { .brand-story { grid-template-columns: 1fr 1fr; min-height: 40rem; } }
.brand-story__text {
  background: var(--plum);
  padding: clamp(3rem,8vw,6rem) clamp(2rem,5vw,4rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.brand-story__text::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  font-family: var(--font-display);
  font-size: 15rem;
  color: rgba(200,149,106,0.08);
  line-height: 1;
  pointer-events: none;
}
.brand-story__eyebrow { color: var(--rose-light); }
.brand-story__quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.25;
}
.brand-story__body { color: rgba(250,248,245,0.6); font-size: 0.9375rem; line-height: 1.75; }
.brand-story__img {
  position: relative;
  overflow: hidden;
  min-height: 20rem;
}
.brand-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── How It Works ────────────────────────────────── */
.how-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 768px) { .how-steps { grid-template-columns: repeat(4, 1fr); } }
.how-step {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: var(--plum-light);
  border: 1px solid rgba(255,255,255,0.05);
  position: relative;
  transition: transform 0.3s var(--ease);
}
.how-step:hover { transform: translateY(-4px); }
.how-step__num {
  font-family: var(--font-mono);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(200,149,106,0.2);
  line-height: 1;
  margin-bottom: 1rem;
}
.how-step__title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}
.how-step__desc { font-size: 0.875rem; color: rgba(250,248,245,0.55); line-height: 1.65; }

/* ── Why Cards ───────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  background: white;
  border: 1px solid var(--blush-dark);
  transition: all 0.3s var(--ease);
}
.why-card:hover {
  border-color: var(--rose-light);
  box-shadow: 0 8px 28px -8px rgba(200,149,106,0.2);
  transform: translateY(-3px);
}
.why-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.875rem;
  background: var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--rose);
}
.why-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--plum);
  margin-bottom: 0.625rem;
}
.why-card__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ── Testimonials ────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial {
  padding: 1.875rem;
  border-radius: 1.25rem;
  background: white;
  border: 1px solid var(--blush-dark);
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
  transition: box-shadow 0.3s;
}
.testimonial:hover { box-shadow: 0 8px 24px -8px rgba(30,15,40,0.1); }
.testimonial__stars { display: flex; gap: 2px; }
.testimonial__stars svg { width: 15px; height: 15px; fill: var(--gold); color: var(--gold); }
.testimonial__text { font-size: 0.9375rem; color: var(--plum); line-height: 1.7; font-style: italic; }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; margin-top: auto; }
.testimonial__avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}
.testimonial__name { font-size: 0.875rem; font-weight: 600; color: var(--plum); }
.testimonial__city { font-size: 0.75rem; color: var(--muted); }

/* ── Newsletter ───────────────────────────────────── */
.newsletter-section {
  background: var(--plum);
  padding-block: var(--section);
  position: relative;
  overflow: hidden;
}
.newsletter-section::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,149,106,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 30rem;
  margin-inline: auto;
}
@media (min-width: 600px) { .newsletter-form { flex-direction: row; } }
.newsletter-input {
  flex: 1;
  height: 3.25rem;
  border-radius: 0.875rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.07);
  color: var(--ivory);
  padding: 0 1.25rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(250,248,245,0.35); }
.newsletter-input:focus { border-color: var(--rose); }

/* ── Footer ──────────────────────────────────────── */
footer {
  background: var(--plum);
  color: var(--ivory);
}
.footer-top { padding-block: 4rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-brand .logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.875rem; color: rgba(250,248,245,0.5); line-height: 1.75; max-width: 22rem; }
.footer-socials { display: flex; gap: 0.625rem; margin-top: 1.5rem; }
.social-btn {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,245,0.55);
  transition: all 0.2s;
}
.social-btn:hover { border-color: var(--rose); color: var(--rose); }
.footer-col h4 { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(250,248,245,0.5);
  margin-bottom: 0.75rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.8125rem; color: rgba(250,248,245,0.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8125rem; color: rgba(250,248,245,0.35); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--ivory); }

/* ── Breadcrumb ──────────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding-block: 1rem;
  font-size: 0.8125rem;
  color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--rose); }
.breadcrumb svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Page header ─────────────────────────────────── */
.page-header {
  background: var(--blush);
  border-bottom: 1px solid var(--blush-dark);
  padding-block: 2.5rem;
}
.page-header h1 { margin-bottom: 0.375rem; }
.page-header p { font-size: 0.9rem; color: var(--muted); }

/* ── Filter / Search Bar ─────────────────────────── */
.filter-bar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .filter-bar { flex-direction: row; align-items: center; } }
.search-wrap {
  flex: 1;
  position: relative;
}
.search-wrap svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  width: 1.125rem;
  height: 1.125rem;
  pointer-events: none;
}
.search-input {
  width: 100%;
  height: 3rem;
  padding: 0 1rem 0 2.75rem;
  border-radius: 0.875rem;
  border: 1.5px solid var(--blush-dark);
  background: white;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--plum);
  outline: none;
  transition: border-color 0.2s;
}
.search-input:focus { border-color: var(--rose); }
.sort-select {
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.875rem;
  border: 1.5px solid var(--blush-dark);
  background: white;
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--plum);
  outline: none;
  cursor: pointer;
  min-width: 10rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B8E8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  transition: border-color 0.2s;
}
.sort-select:focus { border-color: var(--rose); }

/* Category pills */
.category-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.5rem; }
.pill {
  height: 2.25rem;
  padding: 0 1rem;
  border-radius: 2rem;
  border: 1.5px solid var(--blush-dark);
  background: white;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--plum);
  cursor: pointer;
  transition: all 0.2s;
}
.pill:hover { border-color: var(--rose); color: var(--rose); }
.pill.active { background: var(--plum); border-color: var(--plum); color: var(--ivory); }

/* ── Product Detail ──────────────────────────────── */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: 2.5rem;
}
@media (min-width: 1024px) { .pd-layout { grid-template-columns: 1fr 1fr; gap: 4rem; padding-block: 3rem; } }

.pd-gallery { display: flex; flex-direction: column; gap: 0.75rem; }
.pd-main-img {
  aspect-ratio: 4/5;
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--blush);
  position: relative;
}
.pd-main-img img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumbs { display: flex; gap: 0.625rem; overflow-x: auto; }
.pd-thumb {
  width: 5rem;
  height: 6rem;
  border-radius: 0.625rem;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--blush);
}
.pd-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pd-thumb.active { border-color: var(--rose); }

.pd-info { display: flex; flex-direction: column; gap: 1.5rem; }
.pd-badge {
  display: inline-block;
  padding: 0.3rem 0.875rem;
  border-radius: 2rem;
  background: var(--blush);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--plum);
}
.pd-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 400;
  color: var(--plum);
  line-height: 1.15;
}
.pd-rating { display: flex; align-items: center; gap: 0.5rem; }
.pd-stars { display: flex; gap: 2px; }
.pd-stars svg { width: 1rem; height: 1rem; fill: var(--gold); color: var(--gold); }
.pd-rating-text { font-size: 0.875rem; color: var(--muted); }
.pd-price-row { display: flex; align-items: baseline; gap: 0.5rem; }
.pd-price {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 600;
  color: var(--plum);
}
.pd-price-note { font-size: 0.8rem; color: var(--muted); }
.pd-desc { font-size: 0.9375rem; color: var(--muted); line-height: 1.8; }
.pd-benefits { display: flex; flex-direction: column; gap: 0.5rem; }
.pd-benefit {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--muted);
}
.pd-benefit::before { content: '✦'; color: var(--rose); flex-shrink: 0; margin-top: 0.05rem; }

.qty-row { display: flex; align-items: center; gap: 1.25rem; }
.qty-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--plum); }
.qty-control { display: flex; align-items: center; gap: 0; border: 1.5px solid var(--blush-dark); border-radius: 0.875rem; overflow: hidden; }
.qty-btn {
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--plum);
  transition: background 0.2s;
}
.qty-btn:hover { background: var(--blush); }
.qty-num {
  width: 3rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 500;
  color: var(--plum);
  background: none;
  border: none;
  outline: none;
}

.pd-actions { display: flex; flex-direction: column; gap: 0.75rem; }
@media (min-width: 480px) { .pd-actions { flex-direction: row; } }

.pd-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; }
.pd-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem;
  border-radius: 0.875rem;
  background: var(--blush);
  text-align: center;
}
.pd-trust-item svg { color: var(--rose); width: 1.25rem; height: 1.25rem; }
.pd-trust-item span { font-size: 0.7rem; font-weight: 600; color: var(--plum); }

/* Reviews */
.reviews-section { padding-block: 3rem; border-top: 1px solid var(--blush-dark); }
.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review {
  padding: 1.5rem;
  border-radius: 1.125rem;
  background: white;
  border: 1px solid var(--blush-dark);
}
.review__stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
.review__stars svg { width: 14px; height: 14px; fill: var(--gold); color: var(--gold); }
.review__text { font-size: 0.875rem; color: var(--plum); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.review__footer { display: flex; justify-content: space-between; align-items: center; }
.review__name { font-size: 0.8125rem; font-weight: 600; color: var(--plum); }
.review__city { font-size: 0.75rem; color: var(--muted); }
.review__date { font-size: 0.75rem; color: var(--muted); }

/* ── Cart ────────────────────────────────────────── */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 2rem;
}
@media (min-width: 1024px) { .cart-layout { grid-template-columns: 1fr 22rem; align-items: start; } }

.cart-items { display: flex; flex-direction: column; gap: 1rem; }
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: white;
  border: 1px solid var(--blush-dark);
  border-radius: 1.25rem;
  transition: box-shadow 0.2s;
}
.cart-item:hover { box-shadow: 0 4px 16px -4px rgba(30,15,40,0.08); }
.cart-item__img {
  width: 5.5rem;
  height: 7rem;
  border-radius: 0.75rem;
  overflow: hidden;
  background: var(--blush);
  flex-shrink: 0;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__info { flex: 1; min-width: 0; }
.cart-item__cat { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); margin-bottom: 0.25rem; }
.cart-item__name { font-family: var(--font-display); font-size: 1.05rem; color: var(--plum); line-height: 1.25; margin-bottom: 0.5rem; }
.cart-item__price { font-family: var(--font-mono); font-size: 1.05rem; font-weight: 600; color: var(--plum); margin-bottom: 0.875rem; }
.cart-item__each { font-size: 0.75rem; color: var(--muted); }
.cart-item__controls { display: flex; align-items: center; justify-content: space-between; }
.cart-remove { font-size: 0.8rem; color: var(--muted); cursor: pointer; background: none; border: none; display: flex; align-items: center; gap: 0.25rem; transition: color 0.2s; }
.cart-remove:hover { color: var(--error); }

.cart-summary {
  background: white;
  border: 1px solid var(--blush-dark);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
.summary-title { font-family: var(--font-display); font-size: 1.5rem; color: var(--plum); }
.summary-rows { display: flex; flex-direction: column; gap: 0.875rem; font-size: 0.9rem; }
.summary-row { display: flex; justify-content: space-between; }
.summary-row .label { color: var(--muted); }
.summary-row .val { font-weight: 500; color: var(--plum); }
.summary-row .val.free { color: var(--success); }
.summary-shipping-note {
  font-size: 0.8125rem;
  color: var(--muted);
  background: var(--blush);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  line-height: 1.5;
}
.summary-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 0.25rem; }
.summary-total .tlabel { font-weight: 600; font-size: 1rem; color: var(--plum); }
.summary-total .tval { font-family: var(--font-mono); font-size: 1.625rem; font-weight: 600; color: var(--plum); }
.cart-empty {
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.25rem;
  padding: 3rem var(--pad);
}
.cart-empty__icon { font-size: 4rem; opacity: 0.4; }
.cart-empty__title { font-family: var(--font-display); font-size: 2rem; color: var(--plum); }
.cart-empty__text { font-size: 0.9375rem; color: var(--muted); max-width: 24rem; }

/* ── Checkout ────────────────────────────────────── */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: 2rem;
}
@media (min-width: 1024px) { .checkout-layout { grid-template-columns: 1fr 22rem; align-items: start; } }

.checkout-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-card {
  background: white;
  border: 1px solid var(--blush-dark);
  border-radius: 1.25rem;
  padding: 1.75rem;
}
.form-card h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--plum); margin-bottom: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
.form-grid-2 { grid-template-columns: repeat(2, 1fr); }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--plum); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  height: 3rem;
  padding: 0 1rem;
  border-radius: 0.875rem;
  border: 1.5px solid var(--blush-dark);
  background: var(--ivory);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--plum);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239B8E8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,149,106,0.12);
}
.form-group .error { border-color: var(--error); }
.form-error { font-size: 0.75rem; color: var(--error); }
.form-hint { font-size: 0.75rem; color: var(--muted); }

.wa-info-box {
  display: flex;
  gap: 1rem;
  padding: 1.125rem 1.25rem;
  background: #e8f9ee;
  border: 1px solid #b2e0c4;
  border-radius: 1rem;
}
.wa-info-box svg { color: var(--wa-green); flex-shrink: 0; margin-top: 0.1rem; width: 1.25rem; height: 1.25rem; }
.wa-info-box p { font-size: 0.875rem; color: var(--plum); line-height: 1.6; }
.wa-info-box strong { color: var(--plum); }

/* Checkout summary */
.checkout-summary {
  background: white;
  border: 1px solid var(--blush-dark);
  border-radius: 1.25rem;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: sticky;
  top: 6rem;
}
.co-items { display: flex; flex-direction: column; gap: 0.875rem; max-height: 18rem; overflow-y: auto; }
.co-item { display: flex; align-items: center; gap: 0.875rem; }
.co-item__img { width: 3.5rem; height: 4.25rem; border-radius: 0.5rem; overflow: hidden; background: var(--blush); flex-shrink: 0; }
.co-item__img img { width: 100%; height: 100%; object-fit: cover; }
.co-item__name { font-size: 0.875rem; font-weight: 500; color: var(--plum); line-height: 1.3; }
.co-item__qty { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }
.co-item__price { font-family: var(--font-mono); font-size: 0.875rem; font-weight: 600; color: var(--plum); margin-left: auto; flex-shrink: 0; }

/* ── Success state ───────────────────────────────── */
.success-page {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem var(--pad);
  gap: 1.5rem;
}
.success-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #e8f9ee;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--success);
}
.success-icon svg { width: 2.5rem; height: 2.5rem; }
.success-title { font-family: var(--font-display); font-size: 2.5rem; color: var(--plum); }
.success-text { font-size: 0.9375rem; color: var(--muted); max-width: 28rem; line-height: 1.7; }
.success-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.875rem; }

/* ── Animations ──────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Toast ───────────────────────────────────────── */
#toast-container {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  pointer-events: none;
  width: max-content;
  max-width: calc(100vw - 2rem);
}
.toast {
  background: var(--plum);
  color: var(--ivory);
  padding: 0.875rem 1.25rem;
  border-radius: 0.875rem;
  font-size: 0.875rem;
  font-weight: 500;
  box-shadow: 0 8px 24px -4px rgba(30,15,40,0.35);
  animation: toastIn 0.35s var(--ease-spring) both;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.toast.out { animation: toastOut 0.3s var(--ease) both; }
.toast svg { flex-shrink: 0; }
@keyframes toastIn {
  from { opacity: 0; transform: translateY(16px) scale(0.95); }
  to   { opacity: 1; transform: none; }
}
@keyframes toastOut {
  from { opacity: 1; transform: none; }
  to   { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

/* ── Mobile bottom cart bar ──────────────────────── */
.mobile-cart-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 80;
  padding: 0.875rem var(--pad);
  padding-bottom: calc(0.875rem + env(safe-area-inset-bottom));
  background: var(--ivory);
  border-top: 1px solid var(--blush-dark);
  backdrop-filter: blur(8px);
}
.mobile-cart-bar.show { display: block; }

/* ── Responsive Helpers ──────────────────────────── */
.hide-mobile { display: none; }
@media (min-width: 768px) {
  .hide-mobile { display: flex; }
  .nav-hamburger { display: none; }
  .mobile-cart-bar { display: none !important; }
}
@media (max-width: 767px) {
  .nav-hamburger { display: flex; }
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* ── Related products ────────────────────────────── */
.related-section { padding-block: 3rem; border-top: 1px solid var(--blush-dark); }

/* ── Misc ────────────────────────────────────────── */
.text-rose { color: var(--rose); }
.text-muted { color: var(--muted); }
.text-ivory { color: var(--ivory); }
.text-plum { color: var(--plum); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.gap-2 { gap: 0.5rem; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.relative { position: relative; }

/* ── pt for fixed nav ─────────────────────────────── */
.pt-nav { padding-top: 4.5rem; }
@media (min-width: 768px) { .pt-nav { padding-top: 5rem; } }
