/* ============================================================
   GLAZE — Main Stylesheet
   Coquette / Romantic feminine fashion brand · 2026
   Soft pink palette — Sandy Liang / Lirika Matoshi aesthetic
   ============================================================ */

/* ---- Google Fonts import fallback (loaded via HTML <link>) ---- */
/* Required fonts:
   UnifrakturMaguntia — gothic logo
   Great Vibes        — script logo / taglines
   Playfair Display   — headings / display
   Manrope            — body / UI
*/

@font-face {
  font-family: 'Glaze Display';
  src: url('../fonts/GlazeDisplay.woff2') format('woff2'),
       url('../fonts/GlazeDisplay.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */
:root {
  /* New soft pink brand palette */
  --pink-bg:        #FCF0F3;   /* ultra-light pink — page backgrounds */
  --cherry:         #EFC3CF;   /* cherry blossom — section fills */
  --lilac:          #D4ABBE;   /* sweet lilac — borders, accents */
  --rose:           #C8607C;   /* rose — primary CTAs, links */
  --pink-bright:    #F06292;   /* pink topaz — sparingly for badges only */
  --black:          #1A1117;   /* text + footer */
  --white:          #FFFFFF;
  --off-white:      #FDF8F9;   /* product card backgrounds */

  /* Warm accents */
  --coconut-milk:   #FFF8E7;
  --blanc-de-blanc: #F2EFE9;

  /* Glassmorphism */
  --glass-bg:       rgba(252,240,243,0.65);
  --glass-border:   rgba(212,171,190,0.25);

  /* Pink-tinted shadows */
  --shadow-pink-sm: 0 2px 12px rgba(200,96,124,0.08);
  --shadow-pink-md: 0 8px 32px rgba(200,96,124,0.12);
  --shadow-pink-lg: 0 16px 48px rgba(200,96,124,0.18);

  /* Gradients */
  --gradient-hero:  linear-gradient(160deg, #F7D6DF 0%, #FCF0F3 35%, #FFF8E7 100%);
  --gradient-warm:  linear-gradient(135deg, var(--cherry) 0%, var(--coconut-milk) 100%);

  /* Luxury easings */
  --ease-luxury:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce:    cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-luxury: 600ms var(--ease-luxury);

  /* Legacy aliases — kept for inline HTML references */
  --pink-deep:      #C8607C;
  --pink-light:     #EFC3CF;
  --pink-mid:       #D4ABBE;
  --cream:          #FCF0F3;
  --pink-topaz:     #F06292;
  --sweet-lilac:    #D4ABBE;
  --cherry-blossom: #EFC3CF;

  /* Neutral palette */
  --gray-100:   #F5F3F2;
  --gray-200:   #E8E4E2;
  --gray-400:   #A8A09C;
  --gray-600:   #6B6360;
  --gray-800:   #3A3330;

  /* Spacing scale */
  --space-4:    4px;
  --space-8:    8px;
  --space-12:   12px;
  --space-16:   16px;
  --space-20:   20px;
  --space-24:   24px;
  --space-32:   32px;
  --space-40:   40px;
  --space-48:   48px;
  --space-56:   56px;
  --space-64:   64px;
  --space-80:   80px;
  --space-96:   96px;
  --space-120:  120px;
  --space-140:  140px;
  --space-160:  160px;

  /* Typography scale */
  --font-gothic:   'Glaze Display', 'UnifrakturMaguntia', cursive;
  --font-script:   'Great Vibes', cursive;
  --font-headline: 'Playfair Display', Georgia, serif;
  --font-body:     'Manrope', system-ui, sans-serif;

  /* Transitions */
  --transition-fast:   150ms ease;
  --transition-base:   200ms ease;
  --transition-slow:   480ms ease;
  --transition-xslow:  800ms ease;

  /* Borders */
  --radius-sm:  2px;
  --radius-md:  4px;
  --radius-lg:  8px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 999px;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(26,17,23,0.04);
  --shadow-sm:  0 1px 4px rgba(26,17,23,0.06);
  --shadow-md:  0 4px 16px rgba(26,17,23,0.10);
  --shadow-lg:  0 12px 40px rgba(26,17,23,0.14);
  --shadow-hover: 0 8px 30px rgba(26,17,23,0.12);

  /* Layout */
  --container-max: 1400px;
  --container-pad: clamp(16px, 4vw, 48px);
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--pink-bg); /* very light pink */
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

input, textarea, select {
  font-family: var(--font-body);
  font-size: 14px;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

.h1 {
  font-family: var(--font-headline);
  font-size: clamp(36px, 7vw, 56px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

.h2 {
  font-family: var(--font-headline);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.h3 {
  font-family: var(--font-headline);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  line-height: 1.2;
}

.h4 {
  font-family: var(--font-headline);
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 600;
  line-height: 1.3;
}

.body-lg {
  font-size: 18px;
  line-height: 1.65;
  font-weight: 300;
}

.body-sm {
  font-size: 14px;
  line-height: 1.55;
}

.caption {
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--gray-600);
}

.label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.overline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-600);
}

/* Text colour utilities */
.text-pink  { color: var(--rose); }
.text-cream { color: var(--pink-bg); }
.text-muted { color: var(--gray-400); }
.text-center { text-align: center; }
.text-right  { text-align: right; }


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: var(--space-80);
  padding-bottom: var(--space-80);
}

.section--sm {
  padding-top: var(--space-48);
  padding-bottom: var(--space-48);
}

.section--lg {
  padding-top: var(--space-120);
  padding-bottom: var(--space-120);
}

.bg-pink-light { background: var(--cherry); }
.bg-pink-mid   { background: var(--lilac); }
.bg-cream      { background: var(--pink-bg); }
.bg-black      { background: var(--black); }
.bg-white      { background: var(--white); }

.divider {
  width: 100%;
  height: 1px;
  background: var(--lilac);
  border: none;
  margin: var(--space-32) 0;
}

.divider--pink {
  background: linear-gradient(90deg, transparent, var(--rose), transparent);
  height: 1px;
  border: none;
  margin: var(--space-32) 0;
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-8  { gap: var(--space-8); }
.gap-16 { gap: var(--space-16); }
.gap-24 { gap: var(--space-24); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}


/* ============================================================
   5. LOGO TREATMENTS
   ============================================================ */

.logo-double {
  position: relative;
  display: inline-block;
  line-height: 1;
}

.logo-gothic {
  font-family: var(--font-gothic);
  font-size: clamp(48px, 10vw, 100px);
  color: var(--lilac);
  display: block;
  letter-spacing: 0.05em;
  user-select: none;
}

.logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(56px, 12vw, 120px);
  color: var(--black);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-shadow: none;
  user-select: none;
  display: none;
}

/* .intro-logo-img removed — using text with custom font */


/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: transform 0.35s ease, box-shadow var(--transition-base);
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(200,96,124,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: var(--space-32);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-32);
  flex: 1;
  justify-content: center;
}

.nav-logo {
  font-family: var(--font-gothic);
  font-size: 32px;
  color: var(--rose);
  text-decoration: none;
  letter-spacing: 0.05em;
  flex-shrink: 0;
  transition: filter var(--transition-base), opacity var(--transition-fast);
}

.nav-logo:hover {
  filter: drop-shadow(0 0 8px rgba(200,96,124,0.3));
  opacity: 0.85;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rose);
  border-radius: 1px;
  transition: width 0.3s var(--ease-luxury);
  box-shadow: 0 0 6px rgba(200,96,124,0.3);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--rose);
}

.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  color: var(--black);
  transition: color var(--transition-fast);
  flex-shrink: 0;
}

.nav-cart:hover {
  color: var(--rose);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  width: 18px;
  height: 18px;
  background: var(--rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  border-radius: var(--radius-full);
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  font-family: var(--font-body);
}

@keyframes badge-pulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.3); }
  100% { transform: scale(1); }
}

.cart-badge.pulse {
  animation: badge-pulse 0.4s var(--ease-bounce);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--space-4);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform var(--transition-base), opacity var(--transition-base);
  transform-origin: center;
}

.nav-toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }


/* ============================================================
   7. HERO — soft pink, light and airy
   ============================================================ */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  overflow: hidden;
}

/* Ambient glow blob — top right */
.hero::before {
  content: '';
  position: absolute;
  width: 900px;
  height: 900px;
  top: -250px;
  right: -200px;
  background: radial-gradient(circle, rgba(212,171,190,0.35) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Ambient glow blob — bottom left */
.hero::after {
  content: '';
  position: absolute;
  width: 800px;
  height: 800px;
  bottom: -150px;
  left: -120px;
  background: radial-gradient(circle, rgba(239,195,207,0.4) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* 3rd ambient glow blob — center */
.hero .hero-blob-3 {
  position: absolute;
  width: 600px;
  height: 600px;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,248,231,0.3) 0%, transparent 65%);
  pointer-events: none;
  z-index: 1;
}

/* Layered hero logo container */
.hero-logo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  z-index: 2;
  text-align: center;
}

/* .hero-logo-img removed — using text with custom font */

/* Gothic GLAZE — background layer in soft lilac */
.hero-logo-gothic {
  font-family: var(--font-gothic);
  font-size: clamp(80px, 16vw, 200px);
  color: #D4ABBE;
  display: block;
  letter-spacing: 0.08em;
  line-height: 1;
  opacity: 0.8;
  user-select: none;
}

/* Script Glaze — dark rose/black for contrast on light bg */
.hero-logo-script {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(52px, 10vw, 120px);
  color: var(--black);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%);
  white-space: nowrap;
  text-shadow: none;
  z-index: 2;
  line-height: 1;
  user-select: none;
}

/* Single tagline below logo */
.hero-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(26,17,23,0.4);
  z-index: 2;
  position: relative;
  margin-bottom: 40px;
}

/* CTA buttons row */
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 2;
  position: relative;
}



/* ============================================================
   8. SCROLLING TICKER — soft lilac, not vivid pink
   ============================================================ */

.ticker {
  background: linear-gradient(90deg, var(--lilac), var(--rose), var(--lilac));
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  position: relative;
  z-index: 0;
}

.ticker-track {
  display: inline-block;
  animation: ticker-scroll 32s linear infinite;
}

.ticker-track:hover {
  animation-play-state: paused;
}

.ticker-item {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.95);
  padding: 0 28px;
}

.ticker-sep {
  color: rgba(255,255,255,0.6);
  padding: 0 6px;
  font-size: 11px;
}

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


/* ============================================================
   9. BUTTONS — rose pink, not black
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rose);
  color: var(--white);
  padding: 14px 38px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid var(--rose);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary:hover {
  background: transparent;
  color: var(--rose);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(200,96,124,0.3);
}

.btn-primary:active {
  transform: scale(0.98);
  box-shadow: none;
}

/* Pink variant */
.btn-primary--pink {
  background: var(--rose);
  border-color: var(--rose);
}

.btn-primary--pink:hover {
  background: transparent;
  color: var(--rose);
}

/* Secondary — ghost outline */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--black);
  padding: 13px 37px;
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1.5px solid var(--black);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}

.btn-secondary:active {
  transform: scale(0.98);
  box-shadow: none;
}

/* Light variant for dark sections */
.btn-secondary--light {
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-secondary--light:hover {
  background: var(--white);
  color: var(--black);
}

/* Ghost text-only link */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  background: none;
  border: none;
  color: var(--black);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  position: relative;
  text-decoration: none;
}

.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width var(--transition-base);
}

.btn-ghost:hover::after {
  width: 100%;
}

.btn-ghost--cream {
  color: var(--pink-bg);
}

.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--lilac);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.btn-icon:hover {
  border-color: var(--rose);
  background: var(--cherry);
}

/* Glass variant — glassmorphism button */
.btn-glass {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--black);
  padding: 14px 38px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform var(--transition-fast), box-shadow var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
}

.btn-glass:hover {
  background: rgba(252,240,243,0.85);
  border-color: var(--rose);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(200,96,124,0.2);
}


/* ============================================================
   10. CRYSTAL / COQUETTE ACCENT
   ============================================================ */

.crystal-accent::before {
  content: '✦';
  color: var(--rose);
  margin-right: 8px;
  font-size: 0.8em;
}


/* ============================================================
   11. PRODUCT CARDS — editorial style, clean
   ============================================================ */

.product-card {
  display: block;
  background: transparent;
  overflow: visible;
  text-decoration: none;
  position: relative;
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-md);
}

/* Image container — 3:4 ratio, off-white bg */
.product-img-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--off-white);
  margin-bottom: 14px;
  border-radius: var(--radius-lg);
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury);
}

.product-card:hover .product-img-wrap img {
  transform: scale(1.04);
}

/* Text area — no padding, flush */
.product-info {
  padding: 0;
}

/* Product name — Playfair italic */
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  margin-bottom: 5px;
  line-height: 1.35;
}

/* Price wrapper */
.product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Price — Manrope, clean */
.product-price {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.06em;
}

.product-price--old {
  text-decoration: line-through;
  color: var(--gray-400);
  font-weight: 400;
  font-size: 12px;
}

.price-installment {
  font-size: 11px;
  color: var(--rose);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* Products grid — 3 columns */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 32px;
}

/* Badge — top-left corner of image */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--rose);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: var(--radius-sm);
  z-index: 2;
}

.product-badge--limited {
  background: var(--black);
}

/* Quick-add — slides up from bottom of image on hover */
.product-quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--glass-border);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-luxury);
  cursor: pointer;
  border-bottom: none;
  border-left: none;
  border-right: none;
  z-index: 2;
}

/* Product card overlay — hover quick-view */
.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,96,124,0.06);
  opacity: 0;
  transition: opacity 0.4s var(--ease-luxury);
  z-index: 1;
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.product-card:hover .product-quick-add {
  transform: translateY(0);
}

/* Section heading above grids */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 48px;
  color: var(--black);
}

.section-title--light {
  color: var(--white);
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-40);
  gap: var(--space-16);
}

.section-header .section-title {
  margin-bottom: 0;
  text-align: left;
}


/* ============================================================
   12. CATEGORY BANNERS
   ============================================================ */

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-16);
}

.category-grid--2col {
  grid-template-columns: repeat(2, 1fr);
}

.category-banner {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-pink-sm);
  transition: transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
}

.category-banner:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink-md);
}

.category-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.category-banner:hover img {
  transform: scale(1.05);
}

.category-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(26,17,23,0.45) 0%, transparent 100%);
  transition: opacity var(--transition-base);
}

.category-banner:hover::after {
  opacity: 0.9;
}

.category-banner-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: var(--space-24) var(--space-24) var(--space-28);
  color: var(--white);
  transition: transform var(--transition-base);
}

.category-banner:hover .category-banner-overlay {
  transform: translateY(-4px);
}

.category-banner-overlay h3 {
  font-family: var(--font-gothic);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: normal;
  line-height: 1.1;
  margin-bottom: var(--space-8);
}

.category-banner-overlay span {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.65;
  transition: opacity var(--transition-fast);
}

.category-banner:hover .category-banner-overlay span {
  opacity: 1;
}


/* ============================================================
   13. EDITORIAL SPLIT — soft pink panel, not dark
   ============================================================ */

.editorial-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.editorial-img {
  position: relative;
  overflow: hidden;
}

.editorial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.editorial-text {
  background: var(--coconut-milk);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
  overflow: hidden;
}

/* Watermark 'Glaze' script in background */
.editorial-text::before {
  content: 'Glaze';
  position: absolute;
  bottom: -40px;
  right: -20px;
  font-family: var(--font-gothic);
  font-size: 200px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(200,96,124,0.15);
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

.editorial-eyebrow {
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 20px;
}

.editorial-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 20px;
}

.editorial-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(26,17,23,0.6);
  margin-bottom: 36px;
  max-width: 360px;
}


/* ============================================================
   14. BRAND STATEMENT SECTION
   ============================================================ */

.brand-statement {
  background: var(--pink-bg);
  position: relative;
  overflow: hidden;
}

.brand-statement::before {
  content: 'Glaze';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-gothic);
  font-size: clamp(80px, 18vw, 220px);
  font-weight: 400;
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,171,190,0.25);
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.brand-statement-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.brand-statement-title {
  font-family: var(--font-headline);
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: var(--space-24);
}

.brand-statement-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--space-32);
}


/* ============================================================
   15. FULL-PINK CTA SECTION — softer gradient
   ============================================================ */

.cta-pink {
  background: linear-gradient(135deg, #E8A0B4 0%, var(--rose) 30%, #D4ABBE 60%, var(--cherry) 100%);
  background-size: 200% 200%;
  animation: ctaGradientShift 8s ease-in-out infinite;
  padding: var(--space-140) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

@keyframes ctaGradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

/* Floating hearts */
.cta-pink .cta-heart-1,
.cta-pink .cta-heart-2 {
  position: absolute;
  font-size: 48px;
  opacity: 0.12;
  pointer-events: none;
  animation: floatHeart 6s ease-in-out infinite;
}

.cta-pink .cta-heart-1 {
  top: 15%;
  left: 10%;
}

.cta-pink .cta-heart-2 {
  bottom: 15%;
  right: 10%;
  animation-delay: 3s;
}

@keyframes floatHeart {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-15px) rotate(5deg); }
}

/* Oversized watermark GLAZE gothic behind everything */
.cta-pink::before {
  content: 'GLAZE';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'UnifrakturMaguntia', cursive;
  font-size: clamp(100px, 22vw, 260px);
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  letter-spacing: 0.1em;
  line-height: 1;
}

.cta-pink-inner {
  position: relative;
  z-index: 2;
}

.cta-pink-title {
  font-family: var(--font-gothic);
  font-size: clamp(48px, 8vw, 96px);
  color: var(--white);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 16px rgba(0,0,0,0.1);
  line-height: 1.1;
  margin-bottom: 32px;
}



/* ============================================================
   17. STICKY CTA (mobile)
   ============================================================ */

.sticky-cta {
  display: none;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-12) var(--space-20);
  background: var(--white);
  border-top: 1px solid var(--lilac);
  z-index: 200;
  box-shadow: 0 -4px 20px rgba(26,17,23,0.08);
}

.sticky-cta-price {
  flex: 1;
}

.sticky-cta-price strong {
  display: block;
  font-size: 17px;
  font-weight: 600;
}

.sticky-cta-price span {
  font-size: 12px;
  color: var(--rose);
}

.sticky-cta.visible {
  display: flex;
}


/* ============================================================
   18. CART SIDEBAR / PAGE
   ============================================================ */

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 100vw;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 500;
  transform: translateX(100%);
  transition: transform var(--transition-luxury);
  box-shadow: var(--shadow-pink-lg);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,17,23,0.35);
  z-index: 499;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

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

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-20) var(--space-24);
  border-bottom: 1px solid var(--lilac);
}

.cart-drawer-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-16) var(--space-24);
}

.cart-drawer-footer {
  padding: var(--space-20) var(--space-24);
  border-top: 1px solid var(--lilac);
}

.cart-drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--black);
  padding: 4px;
  line-height: 1;
  transition: color var(--transition-fast);
}

.cart-drawer-close:hover {
  color: var(--rose);
}

.cart-drawer-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-100);
}

.cart-drawer-item:last-child {
  border-bottom: none;
}

.cart-drawer-item-img {
  width: 64px;
  flex-shrink: 0;
}

.cart-drawer-item-img img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.cart-drawer-item-name {
  font-family: var(--font-headline);
  font-size: 15px;
  margin-bottom: 4px;
}

.cart-drawer-item-meta {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 6px;
}

.cart-drawer-item-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--rose);
}

.cart-drawer-total {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

.cart-drawer-empty {
  text-align: center;
  padding: 48px 0;
  color: var(--gray-400);
  font-size: 14px;
}

.cart-drawer-view-btn {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  border-radius: var(--radius-full);
}

.cart-drawer-checkout-btn {
  display: block;
  text-align: center;
  width: 100%;
  border-radius: var(--radius-full);
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: var(--space-16);
  padding: var(--space-16) 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: start;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cherry);
  width: 80px;
}

.cart-item-name {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 400;
  margin-bottom: var(--space-4);
}

.cart-item-meta {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-12);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-12);
  font-size: 13px;
}

.qty-btn {
  width: 24px;
  height: 24px;
  border: 1px solid var(--gray-200);
  background: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.qty-btn:hover {
  border-color: var(--rose);
  background: var(--cherry);
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 18px;
  cursor: pointer;
  line-height: 1;
  padding: 2px;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--rose);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-12) 0;
}

.cart-total-row.final {
  font-weight: 600;
  font-size: 18px;
  border-top: 1px solid var(--lilac);
  padding-top: var(--space-16);
  margin-top: var(--space-8);
}

.cart-empty {
  text-align: center;
  padding: var(--space-64) var(--space-24);
}

.cart-empty-icon {
  font-size: 48px;
  opacity: 0.25;
  margin-bottom: var(--space-16);
}

.cart-empty p {
  color: var(--gray-400);
  font-size: 14px;
  margin-bottom: var(--space-24);
}

.cart-empty-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
}

.cart-empty-inner h3 {
  font-family: var(--font-headline);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
}

/* Cart page layout */
.cart-page {
  padding: 60px 0 100px;
  background: var(--pink-bg);
  min-height: 70vh;
}

.cart-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: var(--space-16);
  padding: var(--space-20) 0;
  border-bottom: 1px solid var(--gray-100);
  align-items: center;
}

.cart-item:last-child {
  border-bottom: none;
}

.cart-item-img-wrap {
  width: 100px;
}

.cart-item-img-wrap img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--cherry);
  width: 100%;
}

.cart-item-info {
  min-width: 0;
}

.cart-item-name {
  font-family: var(--font-headline);
  font-size: 17px;
  font-weight: 400;
  margin: 0 0 var(--space-4);
}

.cart-item-name a {
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cart-item-name a:hover {
  color: var(--rose);
}

.cart-item-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  margin-top: var(--space-8);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.cart-item-remove-wrap {
  display: flex;
  align-items: center;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.cart-item-remove:hover {
  color: var(--rose);
}

.cart-actions {
  padding: var(--space-24) 0 0;
  display: flex;
  justify-content: flex-end;
}

/* Cart summary */
.cart-summary-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-32);
  position: sticky;
  top: 100px;
}

.cart-summary-box h3 {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-24);
}

.cart-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-12) 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--gray-600);
}

.cart-summary-divider {
  border-top: 1px solid var(--lilac);
  margin: var(--space-8) 0;
}

.cart-summary-total {
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
}

.cart-checkout-btn {
  width: 100%;
  margin-top: var(--space-24);
  text-align: center;
}

.cart-continue-btn {
  width: 100%;
  margin-top: var(--space-12);
  text-align: center;
}

@media (max-width: 768px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .cart-item {
    grid-template-columns: 80px 1fr;
    gap: var(--space-12);
  }

  .cart-item-qty,
  .cart-item-remove-wrap {
    grid-column: 2;
  }
}


/* ============================================================
   19. FORMS & INPUTS
   ============================================================ */

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-bottom: var(--space-20);
}

.form-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
}

.form-input {
  width: 100%;
  padding: 13px var(--space-16);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,96,124,0.12);
}

.form-input:invalid:not(:placeholder-shown) {
  border-color: #E05555;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
}

.form-hint {
  font-size: 12px;
  color: var(--gray-400);
  margin-top: var(--space-4);
}

.form-error {
  font-size: 12px;
  color: #E05555;
  margin-top: var(--space-4);
}

/* Size selector */
.size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
}

.size-option {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, color 0.25s, box-shadow 0.25s;
}

.size-option:hover {
  border-color: var(--rose);
  box-shadow: 0 0 8px rgba(200,96,124,0.15);
}

.size-option.selected {
  background: var(--rose);
  border-color: var(--rose);
  color: var(--white);
  box-shadow: 0 0 12px rgba(200,96,124,0.25);
}

.size-option.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Select dropdown */
.form-select {
  width: 100%;
  padding: 13px var(--space-16);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A8A09C' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,96,124,0.12);
}


/* ============================================================
   20. FAQ ACCORDION
   ============================================================ */

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--lilac);
}

.faq-item:first-child {
  border-top: 1px solid var(--lilac);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-16);
  width: 100%;
  padding: var(--space-20) 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-headline);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--rose);
}

.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--rose);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.faq-icon::before {
  width: 12px;
  height: 1px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-answer-inner {
  padding-bottom: var(--space-24);
  font-size: 15px;
  line-height: 1.7;
  color: var(--gray-600);
}

.faq-item.open .faq-answer {
  max-height: 600px;
}


/* ============================================================
   21. FOOTER — keep dark
   ============================================================ */

.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  border-top: 2px solid;
  border-image: linear-gradient(90deg, var(--rose), var(--lilac), var(--cherry)) 1;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-48);
  padding-top: var(--space-64);
  padding-bottom: var(--space-64);
}

.footer-brand {
  font-family: var(--font-gothic);
  font-size: 44px;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-brand-script {
  font-family: 'Great Vibes', cursive;
  font-size: 22px;
  color: var(--lilac);
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-24);
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--space-20);
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-link {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-12);
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.footer-link:hover {
  color: var(--white);
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-top: var(--space-8);
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-8);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
  letter-spacing: 0.04em;
}

.social-link:hover {
  color: var(--cherry);
}

.social-link::before {
  content: '→';
  font-size: 11px;
  opacity: 0.5;
}

.footer-newsletter {
  display: flex;
  gap: var(--space-8);
  margin-top: var(--space-4);
}

.footer-newsletter .form-input {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.15);
  color: var(--white);
  flex: 1;
}

.footer-newsletter .form-input::placeholder {
  color: rgba(255,255,255,0.3);
}

.footer-newsletter .form-input:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(200,96,124,0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: var(--space-20) 0;
}

.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-12);
}

.footer-bottom span {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-24);
}

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: rgba(255,255,255,0.65);
}


/* ============================================================
   22. ABOUT PAGE
   ============================================================ */

.about-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--cherry);
}

.about-hero-img {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}

.about-hero-inner {
  position: relative;
  z-index: 2;
  padding: var(--space-80) var(--container-pad);
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
}

.about-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 600;
  color: var(--black);
  line-height: 1;
  max-width: 700px;
}

.about-lead {
  max-width: 600px;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--gray-600);
  margin: 0 auto var(--space-48);
  text-align: center;
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-32);
}

.team-card {
  text-align: center;
}

.team-card-img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-20);
  filter: grayscale(20%);
  transition: filter var(--transition-base);
}

.team-card:hover .team-card-img {
  filter: grayscale(0%);
}

.team-card-name {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: var(--space-4);
}

.team-card-role {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-12);
}

.team-card-bio {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Values section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-48) var(--space-64);
  max-width: 900px;
  margin: 0 auto;
}

.value-item {}

.value-number {
  font-family: var(--font-headline);
  font-size: 56px;
  font-weight: 300;
  color: var(--lilac);
  line-height: 1;
  margin-bottom: var(--space-12);
}

.value-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-12);
}

.value-text {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.7;
}




/* ============================================================
   24. PRODUCT DETAIL PAGE
   ============================================================ */

.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-64);
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 80px;
}

.product-gallery-main {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--cherry);
  margin-bottom: var(--space-16);
}

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

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

.product-gallery-thumb {
  aspect-ratio: 1;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity var(--transition-fast);
  border: 2px solid transparent;
}

.product-gallery-thumb.active {
  opacity: 1;
  border-color: var(--rose);
}

.product-gallery-thumb:hover {
  opacity: 0.9;
}

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

.product-detail-info {
  padding-top: var(--space-16);
}

.product-detail-category {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-12);
}

.product-detail-name {
  font-family: var(--font-headline);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  margin-bottom: var(--space-20);
}

.product-detail-price {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.product-detail-installment {
  font-size: 13px;
  color: var(--rose);
  margin-bottom: var(--space-32);
}

.product-detail-desc {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-600);
  margin-bottom: var(--space-32);
}

.size-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-12);
}

.size-guide-link {
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.06em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.size-guide-link:hover {
  color: var(--rose);
}

.product-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  margin-top: var(--space-24);
}

.product-actions .btn-primary {
  width: 100%;
  padding: 16px;
  font-size: 11px;
}

.product-actions .btn-secondary {
  width: 100%;
  padding: 15px;
  color: var(--black);
  border-color: rgba(26,17,23,0.3);
}

.product-actions .btn-secondary:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.product-meta-list {
  margin-top: var(--space-32);
  border-top: 1px solid var(--lilac);
  padding-top: var(--space-24);
}

.product-meta-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.product-meta-item dt {
  color: var(--gray-400);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.product-meta-item dd {
  color: var(--black);
  font-weight: 500;
}


/* ============================================================
   25. BREADCRUMB
   ============================================================ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-8);
  padding: var(--space-16) 0;
  font-size: 12px;
  color: var(--gray-400);
  letter-spacing: 0.04em;
}

.breadcrumb-sep {
  opacity: 0.4;
}

.breadcrumb a {
  color: var(--gray-400);
  transition: color var(--transition-fast);
}

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

.breadcrumb span:last-child {
  color: var(--black);
}


/* ============================================================
   26. FILTER BAR (catalog)
   ============================================================ */

.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  flex-wrap: wrap;
  padding: var(--space-20) 0;
  border-bottom: 1px solid var(--lilac);
  margin-bottom: var(--space-32);
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-4);
  padding: 6px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  color: var(--black);
}

.filter-chip:hover,
.filter-chip.active {
  border-color: var(--rose);
  background: var(--cherry);
  color: var(--rose);
}

.filter-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-400);
}

.sort-select {
  margin-left: auto;
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 11px;
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  outline: none;
  transition: border-color var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sort-select:focus {
  border-color: var(--rose);
}


/* ============================================================
   27. TOAST / NOTIFICATION
   ============================================================ */

.toast-container {
  position: fixed;
  bottom: var(--space-24);
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  pointer-events: none;
}

.toast {
  background: var(--black);
  color: var(--white);
  padding: var(--space-12) var(--space-20);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  box-shadow: var(--shadow-lg);
  pointer-events: all;
  animation: toastIn 0.3s ease;
  white-space: nowrap;
}

.toast--success {
  border-left: 3px solid #5CB88A;
}

.toast--error {
  border-left: 3px solid #E05555;
}

@keyframes toastIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ============================================================
   28. SCROLL ANIMATIONS
   ============================================================ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
}

/* Stagger children */
.stagger-children > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.stagger-children.visible > *:nth-child(1) { transition-delay: 0ms;   opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(2) { transition-delay: 80ms;  opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(3) { transition-delay: 160ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(4) { transition-delay: 240ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(5) { transition-delay: 320ms; opacity: 1; transform: none; }
.stagger-children.visible > *:nth-child(6) { transition-delay: 400ms; opacity: 1; transform: none; }


/* ============================================================
   29. SCROLL HINT
   ============================================================ */

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.3;
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.scroll-hint:hover {
  opacity: 0.6;
}
.scroll-hint-text {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
}
.scroll-hint-line {
  width: 1px;
  height: 48px;
  background: rgba(26,17,23,0.4);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 0.3; }
  50% { transform: scaleY(1.3); opacity: 0.8; }
}


/* ============================================================
   29B. RESPONSIVE — 1440px+ (large screens)
   ============================================================ */

@media (min-width: 1440px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================================
   30. RESPONSIVE — 1280px
   ============================================================ */

@media (max-width: 1280px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 24px;
  }

  .footer-inner {
    gap: var(--space-32);
  }
}


/* ============================================================
   31. RESPONSIVE — 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 20px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-40) var(--space-48);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-layout {
    gap: var(--space-40);
  }

  .values-grid {
    gap: var(--space-32) var(--space-48);
  }

  .returns-grid {
    grid-template-columns: 1fr;
    gap: var(--space-40);
  }

  .editorial-text {
    padding: 64px 48px;
  }
}


/* ============================================================
   32. RESPONSIVE — 768px (tablet/mobile)
   ============================================================ */

@media (max-width: 768px) {
  /* Nav */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--pink-bg);
    border-bottom: 1px solid var(--lilac);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-16) var(--container-pad) var(--space-24);
    gap: 0;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition:
      transform var(--transition-base),
      opacity var(--transition-base);
    z-index: 99;
  }

  .nav-menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link {
    padding: 14px 0;
    font-size: 13px;
    border-bottom: 1px solid var(--lilac);
  }

  .nav-link::after {
    display: none;
  }

  /* Cart drawer — full-width on mobile */
  .cart-drawer {
    width: 100%;
  }

  /* Products grid */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }

  /* Categories */
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Editorial split — stack vertically */
  .editorial-split {
    grid-template-columns: 1fr;
  }

  .editorial-img {
    min-height: 320px;
  }

  .editorial-text {
    padding: 56px 32px;
  }

  .editorial-text::before {
    display: none;
  }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-32) var(--space-24);
  }

  .footer-col:first-child {
    grid-column: 1 / -1;
  }

  /* Product detail */
  .product-layout {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    position: static;
  }

  /* Teams */
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-32);
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Section */
  .section {
    padding-top: var(--space-56);
    padding-bottom: var(--space-56);
  }

  /* Sticky CTA */
  .sticky-cta {
    display: flex;
    gap: var(--space-12);
    align-items: center;
  }

  /* Breadcrumb */
  .breadcrumb {
    display: none;
  }

  /* Ticker */
  .ticker-item {
    padding: 0 20px;
  }

  /* CTA pink section */
  .cta-pink {
    padding: 72px 0;
  }
}


/* ============================================================
   33. RESPONSIVE — 480px (mobile)
   ============================================================ */

@media (max-width: 480px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 12px;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  /* Hero logo scaling on small screens */
  .hero-logo-gothic {
    font-size: clamp(56px, 18vw, 80px);
  }

  .hero-logo-script {
    font-size: clamp(68px, 22vw, 96px);
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-col:first-child {
    grid-column: auto;
  }

  .brand-statement::before {
    display: none;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .section-title {
    text-align: left;
  }

  .section {
    padding-top: var(--space-40);
    padding-bottom: var(--space-40);
  }


  .editorial-text {
    padding: 40px 24px;
  }

  .cta-pink {
    padding: 56px 0;
  }
}


/* ============================================================
   CHECKOUT PAGE
   ============================================================ */

.checkout-page {
  padding: 60px 0 100px;
  background: var(--pink-bg);
  min-height: 70vh;
}
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}
.checkout-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 48px;
}
.checkout-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--lilac);
  letter-spacing: 0.04em;
}
.checkout-step.active {
  color: var(--black);
}
.checkout-step.done {
  color: var(--rose);
}
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}
.checkout-step.active .step-num {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
}
.checkout-step.done .step-num {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}
.step-arrow {
  width: 40px;
  height: 1px;
  background: var(--lilac);
  margin: 0 12px;
}
.checkout-panel {
  display: block;
  margin-bottom: 40px;
}
.checkout-section-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: var(--black);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--lilac);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-input:focus {
  border-color: var(--rose);
}
.form-input::placeholder {
  color: #b8aaaa;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.delivery-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.delivery-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 1.5px solid var(--lilac);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.delivery-option.selected,
.delivery-option:hover {
  border-color: var(--rose);
}
.delivery-option input[type="radio"] {
  margin-top: 2px;
  accent-color: var(--rose);
  flex-shrink: 0;
}
.delivery-option-label {
  font-family: 'Manrope', sans-serif;
}
.delivery-option-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.delivery-option-desc {
  font-size: 13px;
  color: #7a6b6b;
}
.delivery-option-price {
  font-size: 13px;
  color: var(--rose);
  margin-top: 2px;
}
.checkout-btn-row {
  margin-top: 36px;
}
.btn-checkout-next {
  display: inline-block;
  padding: 16px 48px;
  background: var(--rose);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background 0.2s, transform var(--transition-fast), box-shadow var(--transition-fast);
  text-decoration: none;
}
.btn-checkout-next:hover {
  background: var(--rose);
  transform: translateY(-1px);
  box-shadow: var(--shadow-hover);
}
.btn-checkout-back {
  display: inline-block;
  padding: 16px 32px;
  background: transparent;
  color: var(--black);
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  border: 1px solid var(--lilac);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: border-color 0.2s;
  margin-right: 12px;
  text-decoration: none;
}
.btn-checkout-back:hover {
  border-color: var(--rose);
}

/* Payment step */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 20px;
  border: 1.5px solid var(--lilac);
  border-radius: var(--radius-sm);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.2s;
}
.payment-option.selected,
.payment-option:hover {
  border-color: var(--rose);
}
.payment-option input[type="radio"] {
  margin-top: 3px;
  accent-color: var(--rose);
  flex-shrink: 0;
}
.payment-option-body {
  font-family: 'Manrope', sans-serif;
  flex: 1;
}
.payment-option-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.payment-option-desc {
  font-size: 13px;
  color: #7a6b6b;
  line-height: 1.5;
}
.split-badge {
  display: inline-block;
  background: var(--cherry);
  color: var(--rose);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  margin-left: 8px;
  vertical-align: middle;
}
.card-placeholder {
  margin-top: 20px;
  padding: 20px;
  border: 1px dashed var(--lilac);
  border-radius: var(--radius-sm);
  background: var(--cherry);
}
.card-placeholder-inner {
  display: grid;
  gap: 12px;
}
.card-placeholder-row {
  display: grid;
  grid-template-columns: 1fr 100px 80px;
  gap: 12px;
}
.card-placeholder-input {
  padding: 12px 14px;
  border: 1px solid var(--lilac);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  color: var(--black);
  outline: none;
}
.card-placeholder-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  color: #7a6b6b;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

/* Summary box */
.checkout-summary-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.checkout-summary-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 24px;
}
.checkout-summary-items {
  margin-bottom: 20px;
}
.checkout-summary-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}
.checkout-summary-item-img {
  width: 60px;
  height: 75px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.checkout-summary-item-info {
  font-family: 'Manrope', sans-serif;
}
.checkout-summary-item-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 4px;
}
.checkout-summary-item-size {
  font-size: 12px;
  color: #7a6b6b;
  margin-bottom: 4px;
}
.checkout-summary-item-price {
  font-size: 13px;
  color: var(--rose);
}
.checkout-summary-divider {
  height: 1px;
  background: var(--cherry);
  margin: 16px 0;
}
.checkout-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--black);
  margin-bottom: 10px;
}
.checkout-summary-row.total {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0;
}
.checkout-summary-row .label {
  color: #7a6b6b;
}

/* Thank you state */
.checkout-thankyou {
  text-align: center;
  padding: 80px 40px;
}
.thankyou-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1.5px solid var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}
.thankyou-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--black);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.thankyou-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  color: #7a6b6b;
  margin-bottom: 8px;
  line-height: 1.7;
}
.thankyou-order {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  color: var(--rose);
  letter-spacing: 0.06em;
  margin-top: 16px;
  margin-bottom: 40px;
}
.thankyou-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-error {
  text-align: center;
  padding: var(--space-48) 0;
}

.thankyou-details {
  max-width: 400px;
  margin: 0 auto var(--space-40);
}

.thankyou-details-row {
  display: flex;
  justify-content: space-between;
  padding: var(--space-12) 0;
  border-bottom: 1px solid var(--gray-100);
  font-family: var(--font-body);
  font-size: 14px;
}

.thankyou-details-row span {
  color: var(--gray-600);
}

.thankyou-details-row strong {
  color: var(--black);
}

/* Checkout children */
.checkout-main {
  min-width: 0;
}

.checkout-summary-col {
  position: sticky;
  top: 100px;
}

@media (max-width: 900px) {
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .checkout-summary-col {
    position: static;
  }
  .checkout-summary-box {
    position: static;
    order: -1;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

.about-hero {
  position: relative;
  height: 80vh;
  min-height: 520px;
  overflow: hidden;
}
.about-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,17,23,0.18) 0%, rgba(26,17,23,0.55) 100%);
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
}
.about-hero-inner {
  color: #fff;
}
.about-hero-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 16px;
}
.about-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.01em;
  margin: 0;
}

/* Story section */
.about-story {
  padding: 100px 0;
  background: var(--pink-bg);
}
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-story-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
  display: block;
}
.about-story-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 32px;
  letter-spacing: 0.01em;
}
.about-story-text {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #4a3d43;
  line-height: 1.85;
}
.about-story-text p {
  margin-bottom: 20px;
}
.about-story-text p:last-child {
  margin-bottom: 0;
}
.about-story-img {
  position: relative;
}
.about-story-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.about-story-img-accent {
  position: absolute;
  bottom: -24px;
  left: -24px;
  width: 120px;
  height: 120px;
  background: var(--cherry);
  z-index: -1;
}

/* Values section */
.about-values {
  padding: 100px 0;
  background: var(--black);
}
.about-values-header {
  text-align: center;
  margin-bottom: 64px;
}
.about-values-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 20px;
  display: block;
}
.about-values-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.02em;
}
.about-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.about-value {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 52px 40px;
  border-top: 1px solid rgba(200,112,122,0.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  transition: background 0.4s var(--ease-luxury), border-color 0.4s, transform 0.4s var(--ease-luxury);
}
.about-value:hover {
  background: rgba(200,112,122,0.12);
  border-color: rgba(200,112,122,0.3);
  transform: translateY(-2px);
}
.about-value-num {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 300;
  color: rgba(200,112,122,0.25);
  line-height: 1;
  margin-bottom: 24px;
}
.about-value-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}
.about-value-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
}

/* Behind the scenes */
.about-behind {
  padding: 100px 0;
  background: var(--pink-bg);
  overflow: hidden;
}
.about-behind-header {
  margin-bottom: 48px;
}
.about-behind-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
}
.about-behind-strip {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
}
.about-behind-strip::-webkit-scrollbar {
  display: none;
}
.about-behind-item {
  flex: 0 0 auto;
}
.about-behind-item:nth-child(1) { width: 420px; }
.about-behind-item:nth-child(2) { width: 320px; }
.about-behind-item:nth-child(3) { width: 380px; }
.about-behind-item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-md);
}
.about-behind-caption {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #7a6b6b;
  letter-spacing: 0.06em;
  margin-top: 12px;
}

/* Founder quote */
.about-quote {
  padding: 120px 0;
  background: var(--cherry);
}
.about-quote-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.about-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 120px;
  font-weight: 300;
  color: var(--lilac);
  line-height: 0.5;
  display: block;
  margin-bottom: 32px;
}
.about-quote-text {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 300;
  color: var(--black);
  line-height: 1.45;
  letter-spacing: 0.01em;
  font-style: italic;
  margin: 0 0 40px;
}
.about-quote-author {
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
}

/* CTA Banner */
.about-cta {
  padding: 100px 0;
  background: var(--black);
  text-align: center;
}
.about-cta-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lilac);
  margin-bottom: 24px;
  display: block;
}
.about-cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
.about-cta-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  margin-bottom: 48px;
}
.btn-cta-light {
  display: inline-block;
  padding: 18px 60px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: var(--radius-full);
  color: #fff;
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s, border-color 0.25s;
}
.btn-cta-light:hover {
  background: var(--rose);
  border-color: var(--rose);
}

@media (max-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 2px;
  }
  .about-story-img {
    order: -1;
  }
}


/* ============================================================
   DELIVERY PAGE — Glassmorphism v2.0
   ============================================================ */

.delivery-page {
  background: var(--pink-bg);
  padding-bottom: 100px;
}

/* Hero */
.delivery-hero {
  background: var(--gradient-hero);
  padding: var(--space-96) 0 var(--space-80);
  position: relative;
  overflow: hidden;
}
.delivery-hero::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  right: -120px;
  top: -80px;
  background: radial-gradient(circle, rgba(200,96,124,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.delivery-hero-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: var(--space-16);
  display: block;
}
.delivery-hero-title {
  font-family: var(--font-headline);
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: var(--space-20);
}
.delivery-hero-subtitle {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  color: #7a6b6b;
  max-width: 520px;
  line-height: 1.7;
}

/* Section headings */
.delivery-section {
  padding: var(--space-80) 0 0;
}
.payment-section {
  padding: var(--space-80) 0 0;
}
.returns-section {
  padding: var(--space-80) 0 0;
}
.delivery-section-title {
  font-family: var(--font-headline);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-48);
  letter-spacing: 0.01em;
}

/* Delivery cards — glassmorphism */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
}
.delivery-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-40) var(--space-32);
  box-shadow: var(--shadow-pink-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.delivery-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink-md);
}
.delivery-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,96,124,0.08);
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-24);
  color: var(--rose);
}
.delivery-card-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-8);
}
.delivery-card-time {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.04em;
  margin-bottom: var(--space-12);
  display: block;
}
.delivery-card-price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: var(--space-16);
  display: block;
}
.delivery-card-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #7a6b6b;
  line-height: 1.7;
  margin-top: auto;
}

/* Payment badges — glassmorphism 2x2 grid */
.payment-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-16);
  margin-bottom: var(--space-48);
}
.payment-badge {
  display: flex;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-24);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-pink-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.payment-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink-md);
}
.payment-badge-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,96,124,0.08);
  border-radius: var(--radius-xl);
  color: var(--rose);
  flex-shrink: 0;
}
.payment-badge-text {
  display: flex;
  flex-direction: column;
}
.payment-badge-title {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--black);
}
.payment-badge-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: #7a6b6b;
  margin-top: 2px;
}

/* Split box — glassmorphism */
.payment-split-box {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-40) var(--space-32);
  box-shadow: var(--shadow-pink-sm);
  max-width: 680px;
}
.payment-split-title {
  font-family: var(--font-headline);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-24);
}
.payment-split-steps {
  display: flex;
  gap: var(--space-12);
}
.split-step {
  flex: 1;
  text-align: center;
  padding: var(--space-20) var(--space-12);
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
}
.split-step-num {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: 0.1em;
  margin-bottom: var(--space-4);
  display: block;
}
.split-step-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a6b6b;
  margin-bottom: var(--space-8);
  display: block;
}
.split-step-val {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
}

/* Returns section */
.returns-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-24);
  margin-bottom: var(--space-48);
}
.return-step {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-40) var(--space-32);
  box-shadow: var(--shadow-pink-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.return-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink-md);
}
.return-step-num {
  font-family: var(--font-headline);
  font-size: 52px;
  font-weight: 300;
  color: var(--lilac);
  line-height: 1;
  margin-bottom: var(--space-16);
  display: block;
}
.return-step-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: var(--space-12);
}
.return-step-desc {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #7a6b6b;
  line-height: 1.7;
}

/* Returns conditions — glassmorphism */
.returns-conditions {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-2xl);
  padding: var(--space-40);
  box-shadow: var(--shadow-pink-sm);
  max-width: 700px;
}
.returns-conditions-title {
  font-family: var(--font-headline);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: var(--space-20);
}
.returns-conditions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.returns-conditions-list li {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: #4a3d43;
  line-height: 1.7;
  padding: 10px 0;
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.returns-conditions-list li:last-child {
  border-bottom: none;
}
.returns-conditions-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rose);
  flex-shrink: 0;
  margin-top: 8px;
}

/* Note box — glassmorphism */
.delivery-note {
  margin-top: var(--space-40);
  padding: var(--space-24) var(--space-32);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-left: 3px solid var(--rose);
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 13px;
  color: #4a3d43;
  line-height: 1.7;
  max-width: 680px;
  box-shadow: var(--shadow-pink-sm);
}

/* Responsive */
@media (max-width: 900px) {
  .delivery-cards {
    grid-template-columns: 1fr;
  }
  .returns-steps {
    grid-template-columns: 1fr;
  }
  .payment-badges {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .payment-split-steps {
    flex-direction: column;
    gap: var(--space-8);
  }
  .split-step {
    border-right: none;
  }
}


/* ============================================================
   FAQ PAGE
   ============================================================ */

.faq-page {
  background: var(--pink-bg);
  padding-bottom: 100px;
}

/* Page hero */
.faq-hero {
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--cherry);
}
.faq-hero-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}
.faq-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 300;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.faq-hero-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: #7a6b6b;
  max-width: 480px;
  line-height: 1.7;
}

/* FAQ section */
.faq-section {
  padding: 80px 0 0;
}
.faq-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-sidebar-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
}
.faq-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.faq-sidebar-link {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: #7a6b6b;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--cherry);
  transition: color 0.2s;
  line-height: 1.5;
}
.faq-sidebar-link:hover {
  color: var(--rose);
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--cherry);
}
.faq-item:first-child {
  border-top: 1px solid var(--cherry);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question-text {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.faq-question-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--lilac);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
  color: var(--rose);
}
.faq-item.open .faq-question-icon {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
}
.faq-question-icon svg {
  transition: transform 0.3s;
}
.faq-item.open .faq-question-icon svg {
  transform: rotate(45deg);
}
.faq-answer-inner {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #4a3d43;
  line-height: 1.85;
  max-width: 680px;
  padding-bottom: 28px;
}
.faq-answer-inner a {
  color: var(--rose);
  text-decoration: none;
  border-bottom: 1px solid var(--lilac);
  transition: border-color 0.2s;
}
.faq-answer-inner a:hover {
  border-color: var(--rose);
}
.faq-answer-inner p {
  margin-bottom: 12px;
}
.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* Size table */
.size-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
}
.size-table th {
  background: var(--cherry);
  color: var(--black);
  font-weight: 600;
  padding: 10px 12px;
  text-align: left;
  letter-spacing: 0.04em;
}
.size-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--cherry);
  color: #4a3d43;
}
.size-table tr:last-child td {
  border-bottom: none;
}

/* Contacts section */
.contacts-section {
  padding: 80px 0 0;
}
.contacts-section-label {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}
.contacts-section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--black);
  margin-bottom: 56px;
  letter-spacing: 0.01em;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.contact-card {
  background: #fff;
  padding: 40px 36px;
  border-top: 2px solid transparent;
  border-radius: var(--radius-sm);
  transition: border-color 0.25s;
}
.contact-card:hover {
  border-top-color: var(--rose);
}
.contact-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  color: var(--rose);
}
.contact-card-title {
  font-family: 'Manrope', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a6b6b;
  margin-bottom: 10px;
}
.contact-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
a.contact-card-value:hover {
  color: var(--rose);
}
.contact-card-note {
  font-family: 'Manrope', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: #7a6b6b;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-sidebar {
    position: static;
    display: none;
  }
  .contacts-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================================================
   CATALOG PAGE
   ============================================================ */

.product-card[data-category] { transition: opacity 0.3s, transform 0.3s; }
.product-card.hidden { display: none; }

/* Filter pills bar */
.filters-bar {
  background: var(--white);
  border-bottom: 1px solid var(--lilac);
  position: sticky;
  top: 72px;
  z-index: 50;
}
.filters-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 6px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: none;
  color: var(--black);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-pill:hover,
.filter-pill.active {
  border-color: var(--rose);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--rose);
}
.sort-select-wrap select {
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: 'Manrope', sans-serif;
  font-size: 12px;
  background: var(--white);
  cursor: pointer;
  outline: none;
}

/* Page header */
.page-header {
  background: linear-gradient(135deg, var(--cherry) 0%, var(--pink-bg) 100%);
  padding: 56px 0 40px;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.page-subtitle {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-600);
  letter-spacing: 0.08em;
}


/* ============================================================
   INDEX PAGE — USP Section
   ============================================================ */

.usp-row {
  background: linear-gradient(135deg, var(--black) 0%, #2D1E27 100%);
  padding: 56px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.usp-row-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.usp-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-16);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.usp-block:hover {
  background: rgba(200,96,124,0.08);
  box-shadow: 0 0 24px rgba(200,96,124,0.1);
}
.usp-icon {
  font-size: 32px;
  color: var(--lilac);
  margin-bottom: 10px;
  line-height: 1;
}
.usp-icon--flex {
  display: flex;
  justify-content: center;
}
.usp-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 8px;
  font-family: 'Manrope', sans-serif;
}
.usp-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.6;
  font-weight: 300;
  font-family: 'Manrope', sans-serif;
}

@media (max-width: 768px) {
  .usp-row-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 24px;
  }
}
@media (max-width: 480px) {
  .usp-row-inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
  }
}


/* ============================================================
   INDEX PAGE — Newsletter Section
   ============================================================ */

.newsletter {
  position: relative;
  padding: var(--space-120) 0;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cherry) 0%, var(--pink-bg) 50%, var(--coconut-milk) 100%);
}
.newsletter-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.newsletter-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.18;
}
.newsletter-overlay {
  position: absolute;
  inset: 0;
  background: var(--cherry);
  opacity: 0.85;
  z-index: 0;
}
.newsletter-inner {
  max-width: 500px;
  position: relative;
  z-index: 2;
}
.newsletter-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  font-family: 'Manrope', sans-serif;
}
.newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 40px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.15;
  margin-bottom: 12px;
}
.newsletter-desc {
  font-size: 14px;
  color: rgba(26,17,23,0.5);
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.65;
  font-family: 'Manrope', sans-serif;
}
.newsletter-form {
  max-width: 400px;
  margin: 0 auto;
}
.newsletter-form-row {
  display: flex;
  gap: 0;
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-full);
  padding: 4px;
}

.newsletter-input {
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-full);
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--black);
  outline: none;
}
.newsletter-input:focus {
  outline: none;
}
.newsletter-form .btn-primary {
  flex-shrink: 0;
  border-radius: var(--radius-full);
}
.newsletter-note {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(26,17,23,0.3);
  letter-spacing: 0.06em;
  font-family: 'Manrope', sans-serif;
}


/* ============================================================
   PRODUCT PAGE — addToCart success state
   ============================================================ */

.btn-add-cart--success,
.sticky-cta-btn--success {
  background: var(--rose) !important;
  border-color: var(--rose) !important;
  color: var(--white) !important;
}


/* ============================================================
   LOADING STATE — spinner on buttons
   ============================================================ */

.btn-primary.loading,
.single_add_to_cart_button.loading {
  pointer-events: none;
  opacity: 0.7;
}

.btn-primary.loading::after,
.single_add_to_cart_button.loading::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: glaze-spin 0.6s linear infinite;
  margin-left: 8px;
}

@keyframes glaze-spin {
  to { transform: rotate(360deg); }
}


/* ============================================================
   SKIP LINK — accessibility
   ============================================================ */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 1000;
  padding: 8px 16px;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 8px;
}


/* ============================================================
   FOCUS STYLES — keyboard navigation
   ============================================================ */

:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 2px;
}


/* ============================================================
   SIZE SELECTOR — label + grid
   ============================================================ */

.size-selector {
  margin-bottom: 20px;
}

.size-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-600);
  margin-bottom: 10px;
  display: block;
}

/* Hide default WC variation dropdown when custom size buttons are present */
.size-selector ~ #product-add-to-cart .variations {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* ============================================================
   SCALE-IN — scroll reveal variant
   ============================================================ */

.scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}


/* ============================================================
   HEART-BURST — add-to-cart success animation
   ============================================================ */

@keyframes heart-burst {
  0%   { transform: scale(0); opacity: 1; }
  50%  { transform: scale(1.3); opacity: 0.8; }
  100% { transform: scale(1.6); opacity: 0; }
}

.heart-burst-container {
  position: relative;
  display: inline-block;
}

.heart-burst-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  pointer-events: none;
  animation: heart-burst 0.6s ease-out forwards;
}

.heart-burst-particle::before {
  content: '♡';
  font-size: 14px;
  color: var(--rose);
}


/* ============================================================
   PRODUCTS CAROUSEL — CSS scroll-snap
   ============================================================ */

.products-carousel {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}

.products-carousel::-webkit-scrollbar {
  display: none;
}

.products-carousel .product-card {
  flex: 0 0 calc(33.333% - 22px);
  scroll-snap-align: start;
}

@media (max-width: 768px) {
  .products-carousel .product-card {
    flex: 0 0 calc(50% - 16px);
  }
}

@media (max-width: 480px) {
  .products-carousel .product-card {
    flex: 0 0 calc(75% - 12px);
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-24);
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lilac);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--rose);
  transform: scale(1.3);
}
