/* =========================================================
   SOFIRA BALLOONS — Modern e-commerce gift atelier
   White / soft-gray / blush palette
   ========================================================= */

:root {
  --white:        #ffffff;
  --gray-50:      #f6f6f7;
  --gray-100:     #efeff1;
  --gray-200:     #e5e5e8;
  --gray-300:     #dadada;
  --blush-50:     #fff5f7;
  --blush-100:    #fde8ee;
  --ink:          #202020;
  --ink-soft:     #4a4a4a;
  --muted:        #666666;
  --muted-2:      #8a8a8a;
  --pink:         #f2a7b8;
  --pink-soft:    #fadde5;
  --pink-deep:    #e88fa3;
  --lavender:     #c8b6ff;
  --lavender-soft:#e6dfff;
  --silver:       #dadada;
  --line:         #ececee;
  --display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --sans:    "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --container: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
  --section-y: clamp(72px, 9vw, 130px);
  --r-sm: 12px; --r-md: 18px; --r-lg: 24px; --r-xl: 32px;
  --shadow-card: 0 1px 2px rgba(32,32,32,.04), 0 8px 24px -12px rgba(32,32,32,.08);
  --shadow-card-h: 0 2px 4px rgba(32,32,32,.05), 0 24px 40px -16px rgba(32,32,32,.14);
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--white); color: var(--ink);
  font-family: var(--sans); font-size: 15px; line-height: 1.55;
  -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
input { font: inherit; }
:focus-visible { outline: 2px solid var(--pink-deep); outline-offset: 3px; border-radius: 6px; }

/* Type */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--pink-deep);
}
.eyebrow::before { content: ""; width: 22px; height: 1px; background: var(--pink); }
.eyebrow.no-bar::before { display: none; }

.h-display {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(40px, 6.4vw, 80px); line-height: 1.02;
  letter-spacing: -.025em; color: var(--ink); margin: 0;
}
.h-display em { font-style: italic; font-weight: 300; color: var(--ink); }
.h-section {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(32px, 4.2vw, 52px); line-height: 1.05;
  letter-spacing: -.02em; color: var(--ink); margin: 0;
}
.h-section em { font-style: italic; font-weight: 300; }
.lede { color: var(--muted); font-size: clamp(15px, 1.05vw, 17px); line-height: 1.6; max-width: 56ch; margin: 0; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); position: relative; }
.section { padding: var(--section-y) 0; position: relative; }
.section--gray { background: var(--gray-50); }
.section--blush { background: var(--blush-50); }
.section-head { display: flex; flex-direction: column; gap: 18px; margin-bottom: 48px; max-width: 720px; }
.section-head.row { flex-direction: row; align-items: flex-end; justify-content: space-between; max-width: none; gap: 24px; flex-wrap: wrap; }
.section-head .group { display: flex; flex-direction: column; gap: 14px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 24px; background: var(--ink); color: var(--white);
  font-size: 13px; font-weight: 500; border-radius: 999px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), background .3s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(32,32,32,.5); }
.btn--pink { background: var(--pink-deep); color: #fff; }
.btn--pink:hover { background: #de7d92; }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--gray-300); }
.btn--ghost:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--white { background: var(--white); color: var(--ink); border: 1px solid var(--line); }
.btn--white:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.btn--sm { padding: 11px 18px; font-size: 12px; }
.btn--block { width: 100%; }
.btn--link { background: transparent; padding: 0 0 3px; color: var(--ink); font-size: 13px; font-weight: 500; border-bottom: 1px solid var(--ink); border-radius: 0; }
.btn--link:hover { color: var(--pink-deep); border-color: var(--pink-deep); transform: none; box-shadow: none; }

/* Top bar / Header */
.topbar { display: none; }
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(232,143,163,.12);
}
.header-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; height: 84px; gap: 32px; }
.nav-links { display: flex; gap: 38px; align-items: center; justify-content: center; }
.nav-links a {
  font-size: 14px; font-weight: 400;
  color: #2a2a2a; position: relative; padding: 6px 0;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .3s ease;
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-links a .chev { width: 9px; height: 9px; opacity: .6; transition: transform .3s ease; }
.nav-links a:hover .chev { transform: translateY(2px); }
.header-cta { display: flex; gap: 6px; align-items: center; justify-content: flex-end; }
.icon-btn {
  width: 44px; height: 44px; border-radius: 999px;
  display: inline-flex; align-items: center; justify-content: center;
  color: #2a2a2a; transition: background .3s ease; position: relative;
}
.icon-btn:hover { background: #fdf0f4; color: var(--pink-deep); }
.icon-btn .badge {
  position: absolute; top: 6px; right: 6px;
  min-width: 18px; height: 18px; border-radius: 999px;
  background: var(--pink-deep); color: #fff; font-size: 10px; font-weight: 600;
  display: inline-flex; align-items: center; justify-content: center; padding: 0 5px;
  border: 2px solid #fff;
}

/* Logo */
.logo { display: inline-flex; align-items: center; gap: 14px; }
.logo-mark {
  width: 46px; height: 60px;
  flex: none;
}
.logo-text-lux {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-text-lux .logo-name {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: .14em;
  color: #1c1c1c;
  text-transform: uppercase;
}
.logo-text-lux .logo-divider {
  display: flex; align-items: center; gap: 8px;
  margin-top: 5px;
  font-size: 9px;
  letter-spacing: .42em;
  color: #888;
  text-transform: uppercase;
}
.logo-text-lux .logo-divider::before,
.logo-text-lux .logo-divider::after {
  content: ""; flex: 1; height: 1px; background: #d4d4d4; min-width: 8px;
}

/* ============================================
   HERO — luxury cinematic composition
   ============================================ */
.hero {
  position: relative;
  padding: clamp(20px, 3vw, 50px) 0 clamp(40px, 6vw, 80px);
  background:
    radial-gradient(55% 50% at 72% 38%, rgba(252, 220, 230, .55) 0%, transparent 65%),
    radial-gradient(40% 40% at 18% 75%, rgba(231, 220, 255, .18) 0%, transparent 70%),
    linear-gradient(180deg, #fdfbfa 0%, #fbf6f4 100%);
  overflow: hidden;
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  position: relative; z-index: 2;
  width: 100%;
}

/* Left column */
.hero-copy {
  display: flex; flex-direction: column; gap: 32px;
  max-width: 540px;
  padding-left: clamp(0px, 2vw, 32px);
}
.eyebrow-lux {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--pink-deep);
  opacity: 0;
  animation: fade-up 1.1s var(--ease) .15s forwards;
}
.h-hero {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(48px, 5.6vw, 92px);
  line-height: 1.01;
  letter-spacing: -.022em;
  color: #1c1c1c;
  margin: 0;
  opacity: 0;
  animation: fade-up 1.4s var(--ease) .35s forwards;
}
.h-hero em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--pink-deep);
  font-feature-settings: "ss01" 1, "swsh" 1;
}
.hero-lede {
  font-family: var(--sans);
  font-size: 17px;
  color: #6a6a6a;
  line-height: 1.65;
  max-width: 42ch;
  margin: 0;
  opacity: 0;
  animation: fade-up 1.3s var(--ease) .6s forwards;
}
.hero-ctas-lux {
  display: flex; gap: 14px; flex-wrap: wrap;
  opacity: 0;
  animation: fade-up 1.1s var(--ease) .85s forwards;
}
.btn-lux {
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  padding: 18px 32px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all .5s var(--ease);
  border: 1.5px solid transparent;
}
.btn-lux .arrow { width: 14px; height: 12px; transition: transform .5s var(--ease); }
.btn-lux:hover .arrow { transform: translateX(4px); }
.btn-lux--filled {
  background: var(--pink-deep);
  color: #fff;
  box-shadow: 0 12px 28px -12px rgba(232,143,163,.55);
}
.btn-lux--filled:hover {
  background: #de7d92;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(232,143,163,.7);
}
.btn-lux--outline {
  background: transparent;
  color: var(--pink-deep);
  border-color: var(--pink-deep);
}
.btn-lux--outline:hover {
  background: var(--pink-deep);
  color: #fff;
  transform: translateY(-2px);
}
.hero-features {
  display: flex; gap: 30px; flex-wrap: wrap;
  margin-top: 8px;
  opacity: 0;
  animation: fade-up 1.1s var(--ease) 1.05s forwards;
}
.hf {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px;
  color: #2a2a2a;
  font-weight: 500;
  line-height: 1.35;
}
.hf .hf-icon {
  width: 38px; height: 38px;
  background: #fdf1f4;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--pink-deep);
  flex: none;
}

/* Right column — composition stage */
.stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.05;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
}
.stage-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 45% at 50% 42%, rgba(253, 232, 238, .85) 0%, transparent 65%),
    radial-gradient(30% 30% at 70% 30%, rgba(240, 220, 240, .35) 0%, transparent 70%);
  opacity: 0;
  animation: glow-in 1.8s var(--ease) 0s forwards;
  pointer-events: none;
}
.stage-shadow {
  position: absolute; left: 16%; right: 16%; bottom: 5%; height: 26px;
  background: radial-gradient(50% 100% at 50% 50%, rgba(60,40,50,.16) 0%, transparent 70%);
  filter: blur(8px);
  opacity: 0;
  animation: fade-in 1.5s var(--ease) .4s forwards;
}

/* ============================================
   HERO COMPOSITION — luxury editorial photography
   ============================================ */
.piece {
  position: absolute;
  opacity: 0;
  filter: blur(10px);
  will-change: transform, opacity, filter;
  pointer-events: none;
}
.piece img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* Subtle warm vignette so edges fall off into ambient color */
.stage-vignette {
  position: absolute; inset: -8%;
  background:
    radial-gradient(70% 60% at 50% 48%, transparent 0%, transparent 58%, rgba(60,30,42,.07) 100%);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: fade-in 2.4s var(--ease) 0s forwards;
}

/* Pedestal surface — subtle warm tabletop the box sits on */
.pedestal-surface {
  position: absolute;
  left: 8%; right: 8%;
  bottom: 5%;
  height: 18%;
  z-index: 0;
  background:
    radial-gradient(70% 60% at 50% 28%, rgba(255,245,240,.28) 0%, rgba(255,240,236,.06) 60%, rgba(255,240,236,0) 85%),
    linear-gradient(180deg, rgba(255,240,236,0) 0%, rgba(240,222,222,.10) 60%, rgba(220,200,205,.16) 100%);
  filter: blur(6px);
  border-radius: 50% / 100% 100% 0 0;
  opacity: 0;
  animation: fade-in 2.2s var(--ease) .3s forwards;
  pointer-events: none;
}

/* Strong, soft ground shadow under the gift box */
.stage-ground-shadow {
  pointer-events: none;
}
.ground-shadow-inner {
  width: 100%; height: 100%;
  background:
    radial-gradient(50% 100% at 50% 50%, rgba(38,18,28,.42) 0%, rgba(38,18,28,.22) 38%, rgba(38,18,28,.05) 70%, transparent 80%);
  filter: blur(18px);
  border-radius: 50%;
}
.piece.stage-ground-shadow {
  opacity: 0;
  filter: none;
  transform: none;
  animation: fade-in 2s var(--ease) .7s forwards;
}

/* ===== Balloon — premium glass bubble ===== */
.piece.balloon {
  top: -3%; left: 22%;
  width: 46%; aspect-ratio: 1 / 1.06;
  z-index: 6;
  transform: translateY(-70px) scale(.94);
  filter: blur(10px);
}
.piece.balloon.in {
  animation: piece-in 2.6s var(--ease) 1s forwards,
             float-balloon 11s ease-in-out 5.5s infinite;
}
.bubble {
  position: absolute; inset: 0;
  border-radius: 50%;
  background:
    /* large diagonal highlight */
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.92) 0%, rgba(255,255,255,.5) 6%, rgba(255,255,255,0) 18%),
    /* mid soft white */
    radial-gradient(circle at 36% 32%, rgba(255,255,255,.55) 0%, rgba(255,255,255,0) 28%),
    /* edge tint */
    radial-gradient(circle at 70% 78%, rgba(232,143,163,.22) 0%, rgba(232,143,163,0) 55%),
    /* ambient warm fill */
    radial-gradient(circle at 50% 50%, rgba(252,228,236,.55) 0%, rgba(252,228,236,.2) 55%, rgba(252,228,236,.04) 100%);
  box-shadow:
    inset 0 0 100px rgba(255,255,255,.5),
    inset 8px 14px 80px rgba(255,255,255,.6),
    inset -12px -28px 80px rgba(232,143,163,.28),
    inset -2px 4px 0 rgba(255,255,255,.18),
    0 40px 90px -30px rgba(232,120,150,.45),
    0 12px 30px -12px rgba(232,143,163,.25);
  border: 1px solid rgba(232,143,163,.3);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.bubble::before {
  content: '';
  position: absolute;
  top: 9%; left: 14%;
  width: 36%; height: 22%;
  background: radial-gradient(ellipse at center, rgba(255,255,255,.96) 0%, rgba(255,255,255,.3) 45%, rgba(255,255,255,0) 75%);
  transform: rotate(-22deg);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}
.bubble::after {
  content: '';
  position: absolute;
  bottom: 18%; right: 14%;
  width: 28%; height: 12%;
  background: radial-gradient(ellipse at center, rgba(255,200,210,.4) 0%, rgba(255,200,210,0) 75%);
  transform: rotate(18deg);
  border-radius: 50%;
  pointer-events: none;
  filter: blur(6px);
}
.bubble-text {
  font-family: var(--display);
  font-style: italic;
  color: #d97e93;
  font-size: clamp(22px, 3.2vw, 40px);
  font-weight: 400;
  line-height: 1.05;
  text-shadow: 0 1px 0 rgba(255,255,255,.5), 0 0 22px rgba(255,255,255,.4);
  display: inline-flex; flex-direction: column; align-items: center; gap: 2px;
  position: relative;
  z-index: 2;
}
.bubble-text em { font-style: italic; display: block; }
.bubble-text .heart {
  display: inline-block;
  width: 14px; height: 13px;
  margin-top: 10px;
  background: radial-gradient(circle at 30% 35%, #f4b3c1 0%, #d97e93 70%);
  clip-path: path('M 7 12 C 1 8, -1 3, 3 1 C 5 0, 7 2, 7 4 C 7 2, 9 0, 11 1 C 15 3, 13 8, 7 12 Z');
}
.balloon-knot {
  position: absolute;
  left: 50%; bottom: -1.8%;
  width: 6%; height: 6%;
  background: linear-gradient(180deg, #e89eb1, #a8546a 80%, #7c3a4e);
  border-radius: 40% 40% 50% 50%;
  transform: translateX(-50%);
  box-shadow:
    inset 0 -3px 5px rgba(0,0,0,.28),
    inset 0 2px 3px rgba(255,255,255,.5),
    0 3px 6px rgba(140,60,80,.3);
}

/* Long satin ribbon trailing from balloon, flowing behind/around the box */
.piece.ribbon-tail {
  top: 32%; left: 26%; width: 20%; height: 44%;
  z-index: 4;
  transform: translateY(-10px);
  filter: drop-shadow(0 6px 14px rgba(140,70,90,.22));
}
.piece.ribbon-tail.in {
  animation: tail-in 2.2s var(--ease) 5.2s forwards,
             float-tail 11s ease-in-out 8s infinite;
}

/* ===== Background flowers — depth-of-field blur, lower saturation ===== */
.piece.gyp-back-left {
  bottom: 36%; left: 2%; width: 28%; height: 52%;
  transform: translateY(40px);
  z-index: 3;
  mix-blend-mode: multiply;
}
.piece.gyp-back-left img {
  transform: rotate(-18deg);
  filter: brightness(1.85) contrast(1.35) saturate(.7) blur(2.5px);
}
.piece.gyp-back-left.in {
  animation: piece-in 2.2s var(--ease) 1.6s forwards,
             float-tiny 12s ease-in-out 9s infinite;
}

.piece.gyp-back-right {
  bottom: 38%; right: 2%; width: 26%; height: 54%;
  transform: translateY(40px);
  z-index: 3;
  mix-blend-mode: multiply;
}
.piece.gyp-back-right img {
  transform: rotate(22deg) scaleX(-1);
  filter: brightness(1.85) contrast(1.35) saturate(.7) blur(2.5px);
}
.piece.gyp-back-right.in {
  animation: piece-in 2.2s var(--ease) 1.9s forwards,
             float-tiny 11.5s ease-in-out 9s infinite;
}

/* Lavender bouquet sweeping diagonally across the back */
.piece.lavender {
  bottom: 48%; left: 12%; width: 64%; height: 30%;
  transform: translateY(30px);
  z-index: 4;
  mix-blend-mode: multiply;
  opacity: 0;
}
.piece.lavender img {
  transform: rotate(-12deg);
  filter: brightness(1.02) contrast(1.08) saturate(1.08) blur(.5px);
}
.piece.lavender.in {
  animation: piece-in 2.4s var(--ease) 2.2s forwards,
             float-tiny 13s ease-in-out 9s infinite;
}

/* ===== The hatbox — anchor of the composition ===== */
.piece.box {
  bottom: 9%; left: 16%; width: 68%; aspect-ratio: 1.78 / 1;
  transform: translateY(56px) scale(.92);
  z-index: 5;
  filter: blur(10px) drop-shadow(0 38px 44px rgba(40,18,28,.34));
}
.piece.box img {
  object-fit: contain;
  filter:
    drop-shadow(0 20px 22px rgba(40,18,28,.28))
    drop-shadow(0 4px 10px rgba(60,30,42,.18));
}
.piece.box.in {
  animation: piece-in-box 2.4s var(--ease) .9s forwards,
             float-tiny 13s ease-in-out 8s infinite;
}

/* ===== Products inside the box — deeper drop shadows for realism ===== */
.piece.prod {
  filter: blur(8px) drop-shadow(0 14px 16px rgba(40,20,30,.24));
}
.piece.prod img {
  object-fit: contain;
  filter:
    drop-shadow(0 14px 18px rgba(50,20,35,.26))
    drop-shadow(0 4px 6px rgba(60,30,42,.22));
}

.piece.prod-bathfoam {
  bottom: 22%; left: 16%; width: 12%; height: 40%;
  transform: translateY(42px);
  z-index: 9;
}
.piece.prod-bathfoam img { transform: rotate(-7deg); }
.piece.prod-bathfoam.in { animation: piece-in 2s var(--ease) 2.8s forwards, float-tiny 11s ease-in-out 9s infinite; }

.piece.prod-shimmer {
  bottom: 22%; right: 16%; width: 12%; height: 40%;
  transform: translateY(42px);
  z-index: 9;
}
.piece.prod-shimmer img { transform: rotate(9deg); }
.piece.prod-shimmer.in { animation: piece-in 2s var(--ease) 3s forwards, float-tiny 11.4s ease-in-out 9.4s infinite; }

.piece.prod-serum {
  bottom: 11%; left: 64%; width: 11%; height: 32%;
  transform: translateY(42px);
  z-index: 11;
}
.piece.prod-serum img { transform: rotate(5deg); }
.piece.prod-serum.in { animation: piece-in 2s var(--ease) 3.2s forwards, float-tiny 11.6s ease-in-out 9.2s infinite; }

.piece.prod-mist {
  bottom: 9%; right: 5%; width: 11%; height: 34%;
  transform: translateY(44px);
  z-index: 12;
}
.piece.prod-mist img { transform: rotate(10deg); }
.piece.prod-mist.in { animation: piece-in 2s var(--ease) 3.4s forwards, float-tiny 12s ease-in-out 9.6s infinite; }

.piece.prod-dryoil {
  bottom: 9%; left: 26%; width: 11%; height: 34%;
  transform: translateY(44px);
  z-index: 12;
}
.piece.prod-dryoil img { transform: rotate(-7deg); }
.piece.prod-dryoil.in { animation: piece-in 2s var(--ease) 3.6s forwards, float-tiny 11.3s ease-in-out 9.4s infinite; }

.piece.prod-jar {
  bottom: 13%; left: 44%; width: 13%; height: 14%;
  transform: translateY(30px);
  z-index: 12;
}
.piece.prod-jar.in { animation: piece-in 1.8s var(--ease) 3.8s forwards; }

/* ===== Pink rose bouquet — center, in box opening ===== */
.piece.roses-bouquet {
  bottom: 30%; left: 22%; width: 56%; height: 36%;
  transform: translateY(34px) scale(.94);
  z-index: 10;
  filter: blur(10px) drop-shadow(0 18px 26px rgba(140,50,80,.28));
}
.piece.roses-bouquet img {
  filter:
    drop-shadow(0 12px 18px rgba(140,50,80,.22))
    drop-shadow(0 2px 6px rgba(140,50,80,.18));
}
.piece.roses-bouquet.in {
  animation: piece-in 2.8s var(--ease) 4s forwards,
             float-tiny 14s ease-in-out 10s infinite;
}

/* Small pink rose cluster — front-left foreground, partially over the box */
.piece.rose-front {
  bottom: 1%; left: 0%; width: 34%; height: 24%;
  transform: translateY(40px);
  z-index: 13;
  filter: blur(8px) drop-shadow(0 14px 22px rgba(140,50,80,.32));
}
.piece.rose-front img {
  transform: rotate(-10deg);
  filter:
    drop-shadow(0 10px 14px rgba(140,50,80,.28))
    drop-shadow(0 2px 4px rgba(140,50,80,.2));
}
.piece.rose-front.in {
  animation: piece-in 2.4s var(--ease) 4.4s forwards,
             float-tiny 12s ease-in-out 10s infinite;
}

/* ===== Atmosphere — very subtle pink ambient haze tying everything together ===== */
.atmosphere {
  position: absolute;
  inset: 0;
  z-index: 14;
  pointer-events: none;
  background:
    radial-gradient(40% 30% at 50% 28%, rgba(255,235,240,.10) 0%, transparent 70%),
    radial-gradient(30% 25% at 22% 70%, rgba(255,220,228,.06) 0%, transparent 80%);
  mix-blend-mode: screen;
  opacity: 0;
  animation: fade-in 3s var(--ease) 4.5s forwards;
}

/* Foreground drifting petals + dust */
.piece.petals-foreground {
  inset: 0; width: 100%; height: 100%;
  filter: blur(0);
  z-index: 15;
}
.piece.petals-foreground.in { animation: fade-in 2s var(--ease) 5.6s forwards; }


/* Info cards floating around composition */
.info-card {
  position: absolute;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 14px;
  padding: 12px 18px 12px 12px;
  display: flex; gap: 10px; align-items: center;
  box-shadow:
    0 1px 2px rgba(60,40,50,.05),
    0 18px 40px -16px rgba(180,80,110,.22),
    inset 0 1px 0 rgba(255,255,255,.8);
  z-index: 20;
  opacity: 0;
  transform: translateY(14px) scale(.96);
  backdrop-filter: blur(12px) saturate(1.2);
  -webkit-backdrop-filter: blur(12px) saturate(1.2);
  min-width: 0;
}
.info-card .ic-icon { width: 34px; height: 34px; }
.info-card .ic-title { font-size: 10.5px; }
.info-card .ic-sub { font-size: 10.5px; max-width: 14ch; }
.info-card .ic-icon {
  width: 40px; height: 40px;
  background: #fdf0f4;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--pink-deep);
  flex: none;
}
.info-card .ic-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: #2a2a2a;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.info-card .ic-sub {
  font-size: 11.5px;
  color: #888;
  line-height: 1.35;
  max-width: 16ch;
}
.info-card.ic-1 { top: 18%; left: -18%; animation: card-in 1.6s var(--ease) 6.4s forwards, float-tiny 10s ease-in-out 9s infinite; }
.info-card.ic-2 { top: 48%; right: -4%; animation: card-in 1.6s var(--ease) 6.7s forwards, float-tiny 10.5s ease-in-out 9.5s infinite; }
.info-card.ic-3 { bottom: 6%; right: -2%; animation: card-in 1.6s var(--ease) 7s forwards, float-tiny 11s ease-in-out 10s infinite; }
.stage.composed .info-card.ic-1 { animation: card-in 1.6s var(--ease) 6.4s forwards, float-tiny 10s ease-in-out 9s infinite; }
.stage.composed .info-card.ic-2 { animation: card-in 1.6s var(--ease) 6.7s forwards, float-tiny 10.5s ease-in-out 9.5s infinite; }
.stage.composed .info-card.ic-3 { animation: card-in 1.6s var(--ease) 7s forwards, float-tiny 11s ease-in-out 10s infinite; }

/* Drifting petals (CSS-only, decorative) */
.drift-petal {
  position: absolute;
  width: 12px; height: 14px;
  background: linear-gradient(135deg, #fceaee 0%, #f2a7b8 100%);
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 13;
  filter: drop-shadow(0 4px 10px rgba(232,143,163,.22));
}
.drift-petal.p1 { top: 22%; left: 8%;  width: 10px; height: 12px; animation: drift1 16s ease-in-out 6s infinite; }
.drift-petal.p2 { top: 38%; right: 6%; width: 14px; height: 16px; animation: drift2 18s ease-in-out 7s infinite; }
.drift-petal.p3 { bottom: 32%; left: 20%; width: 8px; height: 10px; animation: drift3 17s ease-in-out 6.5s infinite; }
.drift-petal.p4 { top: 14%; right: 22%; width: 12px; height: 14px; animation: drift1 19s ease-in-out 7.4s infinite; }
.drift-petal.p5 { top: 58%; left: 6%; width: 10px; height: 12px; animation: drift2 16s ease-in-out 6.4s infinite; }
.drift-petal.p6 { bottom: 18%; right: 12%; width: 14px; height: 16px; animation: drift3 18s ease-in-out 7.2s infinite; }
.drift-petal.p7 { top: 30%; left: 30%; width: 9px; height: 11px; animation: drift1 20s ease-in-out 8s infinite; }
.drift-petal.p8 { top: 46%; left: 44%; width: 7px; height: 9px; animation: drift2 22s ease-in-out 8.6s infinite; transform: translateY(-20px); }
.drift-petal.p9 { bottom: 40%; right: 32%; width: 8px; height: 10px; animation: drift3 21s ease-in-out 7.8s infinite; }

/* Floating dust motes for ambient atmosphere */
.dust {
  position: absolute;
  width: 4px; height: 4px;
  background: radial-gradient(circle, rgba(255,240,245,.95) 0%, rgba(255,240,245,0) 70%);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: 13;
  filter: blur(.5px);
}
.dust.d1 { top: 18%; left: 28%; animation: dust-float 14s ease-in-out 6s infinite; }
.dust.d2 { top: 32%; right: 18%; animation: dust-float 17s ease-in-out 7s infinite; }
.dust.d3 { bottom: 30%; left: 40%; animation: dust-float 16s ease-in-out 6.6s infinite; }
.dust.d4 { top: 8%; left: 48%; width: 5px; height: 5px; animation: dust-float 19s ease-in-out 7.4s infinite; }
.dust.d5 { bottom: 12%; right: 36%; animation: dust-float 15s ease-in-out 6.8s infinite; }
.dust.d6 { top: 50%; right: 4%; width: 3px; height: 3px; animation: dust-float 18s ease-in-out 7.8s infinite; }

/* Hero composition entry keyframes */
@keyframes glow-in { to { opacity: 1; } }
@keyframes fade-up {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes piece-in {
  0%   { opacity: 0; filter: blur(12px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translate(0,0) scale(1) rotate(0); filter: blur(0); }
}
@keyframes bow-in {
  0%   { opacity: 0; filter: blur(8px); }
  100% { opacity: 1; transform: translate(-50%, 0) scale(1); filter: blur(0); }
}
@keyframes tail-in {
  0%   { opacity: 0; filter: blur(8px); }
  100% { opacity: 1; transform: translate(-50%, 0); filter: blur(0); }
}
@keyframes card-tag-in {
  to { opacity: 1; transform: translate(0,0) rotate(-4deg); filter: blur(0); }
}
@keyframes piece-in-box {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translate(0,0) scale(1); filter: blur(0); }
}
/* Rotation-preserving entry keyframes — keep flowers at their natural angles */
@keyframes piece-in-rot-l {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(-12deg); filter: blur(0); }
}
@keyframes piece-in-rot-r {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(18deg) scaleX(-1); filter: blur(0); }
}
@keyframes piece-in-rot-lav {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(-18deg); filter: blur(0); }
}
@keyframes piece-in-rot-l2 {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(-4deg); filter: blur(0); }
}
@keyframes piece-in-rot-r2 {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(6deg); filter: blur(0); }
}
@keyframes piece-in-rot-l3 {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(-8deg); filter: blur(0); }
}
@keyframes piece-in-rot-r3 {
  0%   { opacity: 0; filter: blur(10px); }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: translateY(0) rotate(14deg) scaleX(-1); filter: blur(0); }
}
@keyframes card-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float-tiny {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
@keyframes float-balloon {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes float-bow {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, -10px); }
}
@keyframes float-tail {
  0%, 100% { transform: translate(-50%, 0) rotate(0deg); }
  50%      { transform: translate(-50%, -8px) rotate(.6deg); }
}
@keyframes drift1 {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  15%  { opacity: .85; }
  85%  { opacity: .6; }
  100% { opacity: 0; transform: translate(56px, 120px) rotate(140deg); }
}
@keyframes drift2 {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  15%  { opacity: .85; }
  85%  { opacity: .6; }
  100% { opacity: 0; transform: translate(-72px, 100px) rotate(-130deg); }
}
@keyframes drift3 {
  0%   { opacity: 0; transform: translate(0, 0) rotate(0deg); }
  15%  { opacity: .85; }
  85%  { opacity: .6; }
  100% { opacity: 0; transform: translate(34px, 130px) rotate(90deg); }
}
@keyframes dust-float {
  0%   { opacity: 0; transform: translate(0, 0); }
  20%  { opacity: .9; }
  80%  { opacity: .7; }
  100% { opacity: 0; transform: translate(28px, -40px); }
}

/* Marquee */
.marquee { background: var(--ink); color: var(--white); overflow: hidden; padding: 18px 0; }
.marquee-track {
  display: flex; gap: 56px; white-space: nowrap;
  animation: marquee 38s linear infinite;
  font-family: var(--display); font-style: italic;
  font-size: 26px; font-weight: 300; align-items: center;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 56px; }
.marquee-track .star { color: var(--pink); font-size: 14px; }

/* Occasions */
.occasions-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.occasion {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 22px 20px 26px; display: flex; flex-direction: column; gap: 14px;
  cursor: pointer; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  min-height: 220px;
}
.occasion:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); }
.occasion .occ-art {
  width: 100%; aspect-ratio: 1; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.occ-art-1 { background: linear-gradient(160deg, #fff5f7, #fadde5); }
.occ-art img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.occasion:hover .occ-art img { transform: scale(1.05); }
.occ-art img { transition: transform .5s var(--ease); }
.occ-art-2 { background: linear-gradient(160deg, #f6f6f7, #e6dfff); }
.occ-art-3 { background: linear-gradient(160deg, #fff5f7, #f2a7b8); }
.occ-art-4 { background: linear-gradient(160deg, #f6f6f7, #fadde5); }
.occ-art-5 { background: linear-gradient(160deg, #e6dfff, #c8b6ff); }
.occ-art-6 { background: linear-gradient(160deg, #f6f6f7, #dadada); }
.occasion h3 { font-family: var(--display); font-weight: 400; font-size: 20px; letter-spacing: -.01em; margin: 0; color: var(--ink); }
.occasion p { color: var(--muted); font-size: 12px; margin: 0; }
.occasion .occ-meta { display: flex; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 10px; margin-top: auto; }
.occasion .occ-meta .count { font-size: 12px; color: var(--muted-2); letter-spacing: .04em; white-space: nowrap; }
.occ-meta .arrow {
  width: 28px; height: 28px; border-radius: 50%; flex: none;
  background: var(--gray-100);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); transition: all .3s ease;
}
.occasion:hover .arrow { background: var(--ink); color: var(--white); transform: translateX(4px); }

/* Products */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 14px; display: flex; flex-direction: column; gap: 14px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  cursor: pointer;
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-card-h); }
.product-art { position: relative; aspect-ratio: 1; border-radius: var(--r-md); background: var(--gray-50); overflow: hidden; }
.product-art .product-img {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s var(--ease);
}
.product:hover .product-img { transform: scale(1.03); }
.product-art .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--white);
  font-size: 10px; font-weight: 600; letter-spacing: .04em;
  padding: 5px 10px; border-radius: 999px; z-index: 2;
}
.product-art .badge.pink { background: var(--pink-deep); }
.product-art .like {
  position: absolute; top: 10px; right: 10px;
  width: 36px; height: 36px; background: rgba(255,255,255,.92);
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--ink); z-index: 2; transition: all .3s ease;
}
.product-art .like:hover { background: var(--pink-deep); color: #fff; }
.product-art .quickview {
  position: absolute; left: 50%; bottom: 12px;
  transform: translateX(-50%) translateY(8px);
  padding: 9px 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 11px; font-weight: 500; color: var(--ink); z-index: 2;
  opacity: 0; transition: opacity .4s ease, transform .4s var(--ease);
  white-space: nowrap;
}
.product:hover .quickview { opacity: 1; transform: translateX(-50%) translateY(0); }
.product-meta { display: flex; flex-direction: column; gap: 6px; padding: 0 4px; }
.product-meta .cat { font-size: 11px; color: var(--muted-2); letter-spacing: .04em; }
.product-meta h3 { font-family: var(--display); font-weight: 400; font-size: 19px; letter-spacing: -.01em; margin: 0; color: var(--ink); line-height: 1.2; }
.product-meta .price-row { display: flex; justify-content: space-between; align-items: baseline; margin-top: 2px; }
.product-meta .price { font-size: 16px; font-weight: 600; color: var(--ink); }
.product-meta .price-old { color: var(--muted-2); text-decoration: line-through; font-size: 13px; margin-left: 8px; font-weight: 400; }
.product-meta .stars { color: var(--pink-deep); font-size: 12px; letter-spacing: 1px; }
.product-meta .stars span { color: var(--muted); font-weight: 500; margin-left: 4px; }
.product-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 0 4px 4px; }
.product-actions .btn { padding: 11px 14px; font-size: 12px; font-weight: 500; }

/* Filters */
.filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.filter-chip {
  padding: 9px 16px; font-size: 12px; font-weight: 500;
  background: var(--white); color: var(--ink);
  border: 1px solid var(--line); border-radius: 999px;
  transition: all .3s ease;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--white); border-color: var(--ink); }
.filter-chip .count { color: var(--muted-2); font-weight: 400; margin-left: 6px; }
.filter-chip.active .count { color: rgba(255,255,255,.6); }

/* Builder */
.builder { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(20px, 4vw, 56px); align-items: stretch; }
.builder-controls { display: flex; flex-direction: column; gap: 16px; }
.control-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 22px; }
.control-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.control-head h4 { font-family: var(--display); font-weight: 400; font-size: 18px; margin: 0; color: var(--ink); }
.control-head .step { font-size: 11px; color: var(--muted-2); letter-spacing: .08em; font-weight: 500; }
.opts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.opt-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 10px; display: flex; flex-direction: column; gap: 8px; align-items: center;
  cursor: pointer; transition: all .3s ease; position: relative;
}
.opt-card:hover { border-color: var(--ink); transform: translateY(-1px); }
.opt-card.active { border-color: var(--ink); background: var(--gray-50); box-shadow: 0 0 0 2px var(--ink) inset; }
.opt-card.active::after {
  content: ""; position: absolute; top: 8px; right: 8px;
  width: 16px; height: 16px; border-radius: 50%; background: var(--ink);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2'><path d='M2 6l3 3 5-6'/></svg>");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.opt-swatch { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); background: var(--gray-100); }
.opt-card .opt-name { font-size: 12px; font-weight: 500; color: var(--ink); }
.opt-card .opt-sub { font-size: 10px; color: var(--muted-2); }
.color-row { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--line); cursor: pointer; position: relative;
  transition: transform .3s var(--ease);
}
.color-swatch:hover { transform: scale(1.06); }
.color-swatch.active::after { content: ""; position: absolute; inset: -5px; border: 1.5px solid var(--ink); border-radius: 50%; }
.input-line { position: relative; }
.input-line input {
  width: 100%; padding: 14px 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px;
  color: var(--ink); font-size: 15px; outline: none;
  transition: border-color .3s ease;
}
.input-line input::placeholder { color: var(--muted-2); }
.input-line input:focus { border-color: var(--ink); }
.input-line .input-counter { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); font-size: 11px; color: var(--muted-2); }

.builder-preview {
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-50) 100%);
  border: 1px solid var(--line); border-radius: var(--r-xl);
  padding: 24px; display: flex; flex-direction: column;
  position: sticky; top: 100px; min-height: 600px;
}
.preview-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.preview-head .live {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; color: var(--ink);
  background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px;
}
.preview-head .live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--pink-deep); animation: pulse 1.8s infinite ease-in-out; }
.preview-head .price-tag { font-family: var(--display); font-size: 28px; color: var(--ink); font-weight: 400; }
.preview-stage {
  flex: 1; position: relative;
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, #ffffff 0%, var(--gray-100) 100%);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 380px;
}
.preview-stage svg { width: 80%; height: 90%; }
.preview-summary {
  margin-top: 16px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
  padding: 14px 16px; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-md);
}
.preview-summary .row { display: flex; justify-content: space-between; align-items: baseline; font-size: 12px; color: var(--muted); padding: 4px 0; }
.preview-summary .row strong { color: var(--ink); font-weight: 500; }
.preview-message {
  margin-top: 12px; padding: 12px 14px;
  background: var(--blush-50); border-radius: 12px;
  font-family: var(--display); font-style: italic;
  color: var(--ink); font-size: 16px; line-height: 1.4;
  text-align: center; min-height: 44px;
}
.preview-cta { display: grid; grid-template-columns: 1fr auto; gap: 10px; margin-top: 14px; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { display: flex; flex-direction: column; gap: 14px; padding: 28px 22px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); position: relative; }
.step .step-num { font-family: var(--display); font-style: italic; font-weight: 400; font-size: 36px; color: var(--pink-deep); line-height: 1; }
.step h4 { font-family: var(--display); font-size: 22px; font-weight: 400; margin: 0; letter-spacing: -.01em; color: var(--ink); }
.step p { color: var(--muted); font-size: 13px; margin: 0; line-height: 1.5; }
.step .step-icon { width: 44px; height: 44px; background: var(--gray-50); border-radius: 12px; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 240px; gap: 16px; }
.gtile { position: relative; border-radius: var(--r-lg); overflow: hidden; background: var(--gray-50); cursor: pointer; }
.gtile.tall { grid-row: span 2; }
.gtile-img { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; transition: transform 1.2s var(--ease); }
.gtile:hover .gtile-img { transform: scale(1.04); }
.gtile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(32,32,32,.55) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 18px; opacity: 0; transition: opacity .4s ease;
}
.gtile:hover .gtile-overlay { opacity: 1; }
.gtile-overlay .label { font-size: 11px; color: rgba(255,255,255,.75); letter-spacing: .04em; }
.gtile-overlay .title { font-family: var(--display); color: #fff; font-size: 18px; }
.gt-1 { background: linear-gradient(160deg, #fff5f7, #fadde5); }
.gt-2 { background: linear-gradient(160deg, #f6f6f7, #e6dfff); }
.gt-3 { background: linear-gradient(160deg, #fff5f7, #f2a7b8); }
.gt-4 { background: linear-gradient(160deg, #f6f6f7, #fadde5); }
.gt-5 { background: linear-gradient(160deg, #e6dfff, #c8b6ff); }
.gt-6 { background: linear-gradient(160deg, #f6f6f7, #dadada); }

/* Trust */
.trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; }
.trust-item { padding: 32px 28px; border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.trust-item:last-child { border-right: 0; }
.trust-item .ti-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--blush-50); display: inline-flex; align-items: center; justify-content: center; color: var(--pink-deep); }
.trust-item:nth-child(2) .ti-icon { background: var(--lavender-soft); color: #6e58c0; }
.trust-item:nth-child(3) .ti-icon { background: var(--gray-100); color: var(--ink); }
.trust-item:nth-child(4) .ti-icon { background: var(--blush-100); color: var(--pink-deep); }
.trust-item h5 { font-family: var(--display); font-size: 18px; font-weight: 400; margin: 0; color: var(--ink); letter-spacing: -.01em; }
.trust-item p { color: var(--muted); font-size: 12px; margin: 0; line-height: 1.5; }

/* CTA banner */
.cta-banner {
  background: var(--ink); color: var(--white);
  border-radius: var(--r-xl); padding: clamp(56px, 7vw, 90px) clamp(28px, 5vw, 80px);
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: clamp(24px, 4vw, 64px); align-items: center;
  position: relative; overflow: hidden;
}
.cta-banner::before { content: ""; position: absolute; width: 380px; height: 380px; right: -60px; top: -120px; background: radial-gradient(circle, rgba(242,167,184,.35) 0%, transparent 70%); pointer-events: none; }
.cta-banner::after { content: ""; position: absolute; width: 320px; height: 320px; left: -80px; bottom: -160px; background: radial-gradient(circle, rgba(200,182,255,.22) 0%, transparent 70%); pointer-events: none; }
.cta-banner .h-display { color: var(--white); position: relative; z-index: 2; }
.cta-banner .h-display em { color: var(--pink); }
.cta-banner .lede { color: rgba(255,255,255,.7); position: relative; z-index: 2; }
.cta-banner .ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; position: relative; z-index: 2; }
.cta-banner .btn--white { background: var(--white); color: var(--ink); border-color: var(--white); }
.cta-banner .btn--white:hover { background: var(--pink); border-color: var(--pink); }
.cta-banner .btn--ghost { color: var(--white); border-color: rgba(255,255,255,.3); }
.cta-banner .btn--ghost:hover { background: var(--white); color: var(--ink); }
.cta-bubble { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; }
.cta-bubble svg { width: 100%; max-width: 380px; }

/* Footer */
.footer { padding: clamp(64px, 8vw, 100px) 0 32px; background: var(--gray-50); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr; gap: 40px; margin-bottom: 56px; }
.footer h6 { font-size: 12px; font-weight: 600; color: var(--ink); margin: 0 0 18px 0; letter-spacing: .04em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); font-size: 13px; transition: color .3s; }
.footer-links a:hover { color: var(--ink); }
.footer-brand p { color: var(--muted); font-size: 13px; margin: 16px 0; max-width: 30ch; line-height: 1.6; }
.newsletter-form {
  display: flex; background: var(--white); border: 1px solid var(--line);
  border-radius: 999px; padding: 4px 4px 4px 16px;
  align-items: center; margin-top: 10px;
}
.newsletter-form input { flex: 1; background: transparent; border: 0; font-size: 13px; outline: none; color: var(--ink); padding: 8px 0; min-width: 0; }
.newsletter-form input::placeholder { color: var(--muted-2); }
.newsletter-form button { padding: 9px 16px; background: var(--ink); color: var(--white); font-size: 12px; font-weight: 500; border-radius: 999px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid var(--line); font-size: 12px; color: var(--muted); flex-wrap: wrap; gap: 16px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 34px; height: 34px; background: var(--white); border: 1px solid var(--line); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); transition: all .3s ease; }
.footer-social a:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }

/* Cart */
.cart-drawer {
  position: fixed; right: 0; top: 0; bottom: 0;
  width: min(420px, 100vw); background: var(--white);
  z-index: 60; transform: translateX(100%);
  transition: transform .55s var(--ease);
  display: flex; flex-direction: column;
  box-shadow: -30px 0 60px -30px rgba(32,32,32,.2);
}
.cart-drawer.open { transform: translateX(0); }
.cart-overlay { position: fixed; inset: 0; background: rgba(32,32,32,.3); backdrop-filter: blur(2px); z-index: 55; opacity: 0; pointer-events: none; transition: opacity .4s ease; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-head { padding: 22px 24px; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-family: var(--display); font-size: 22px; font-weight: 400; margin: 0; }
.cart-body { flex: 1; overflow-y: auto; padding: 20px 24px; display: flex; flex-direction: column; gap: 18px; }
.cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); font-size: 14px; }
.cart-empty .ee-icon { width: 56px; height: 56px; margin: 0 auto 16px; background: var(--gray-50); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; color: var(--ink); }
.cart-empty strong { display: block; font-family: var(--display); color: var(--ink); font-size: 20px; font-weight: 400; margin-bottom: 6px; }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto; gap: 14px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-line .thumb { width: 70px; height: 84px; background: var(--blush-50); border-radius: 12px; }
.cart-line h4 { font-family: var(--display); font-size: 16px; font-weight: 400; margin: 0 0 4px; }
.cart-line .meta { font-size: 11px; color: var(--muted); margin-bottom: 8px; line-height: 1.4; }
.cart-line .qty { display: inline-flex; gap: 12px; align-items: center; font-size: 13px; }
.cart-line .qty button { width: 22px; height: 22px; border: 1px solid var(--line); border-radius: 50%; font-size: 12px; }
.cart-line .price { font-size: 14px; font-weight: 600; color: var(--ink); }
.cart-foot { padding: 22px 24px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 12px; }
.cart-foot .row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); }
.cart-foot .row.total { font-size: 16px; color: var(--ink); font-weight: 600; padding-top: 10px; border-top: 1px solid var(--line); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .4s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .48s; }
.reveal-stagger.in > *:nth-child(8) { transition-delay: .56s; }

/* Keyframes */
@keyframes rise { to { opacity: 1; transform: translateY(0); } }
@keyframes fade-in { to { opacity: 1; } }
@keyframes box-in { to { opacity: 1; transform: scale(1); } }
@keyframes slide-in-bl { to { opacity: 1; transform: translate(0,0) rotate(0deg); } }
@keyframes slide-in-tr { to { opacity: 1; transform: translate(0,0) rotate(0deg); } }
@keyframes slide-in-br { to { opacity: 1; transform: translate(0,0) rotate(0deg); } }
@keyframes rise-up { to { opacity: 1; transform: translate(-50%, 0) scale(1); } }
@keyframes balloon-in { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes ribbon-fall { to { opacity: 1; transform: translateY(0); } }
@keyframes rise-card { to { opacity: 1; transform: translateY(0); } }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floaty-bottle { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, -6px); } }
@keyframes floaty-balloon { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%, 100% { opacity: .4; transform: scale(1); } 50% { opacity: 1; transform: scale(1.2); } }
@keyframes marquee { to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .piece { opacity: 1 !important; transform: none !important; }
  .piece.bottle { transform: translateX(-50%) !important; }
  .hero-card { opacity: 1 !important; }
}

/* Responsive */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .occasions-grid { grid-template-columns: repeat(3, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 180px; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; row-gap: 40px; }
  .footer-grid > div:nth-child(5) { grid-column: 1 / -1; }
  .trust { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid var(--line); }
  .builder { grid-template-columns: 1fr; }
  .builder-preview { position: static; }
  .cta-banner { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .header-row { height: 64px; }
  .hero-grid { grid-template-columns: 1fr; }
  .stage { max-width: 460px; margin: 0 auto; }
  .hero-card { display: none; }
  .info-card { display: none; }
  .hero-features { gap: 18px; }
  .occasions-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-actions { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gtile.tall { grid-row: span 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .opts-grid { grid-template-columns: repeat(2, 1fr); }
  .topbar { font-size: 10px; }
}
