:root {
  --rose:      #E91E8C;
  --deep-rose: #AD1457;
  --pink:      #F48FB1;
  --cream:     #FFF5F9;
  --blush:     #FCE4EC;
  --white:     #FFFFFF;
  --choco:     #880E4F;
  --muted:     #C2185B;
  --border:    rgba(233,30,140,0.15);
  --shadow:    rgba(194,24,91,0.16);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Nunito', sans-serif;
  background: var(--cream);
  color: var(--choco);
  overflow-x: hidden;
}
/* Global heading font override */
h1, h2, h3, h4 {
  font-family: 'Baloo 2', sans-serif;
}

/* ─── PARTICLES ─── */
#particles {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 0; overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: particleRise var(--dur, 8s) linear var(--del, 0s) infinite;
}
@keyframes particleRise {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  8%   { opacity: 0.75; }
  88%  { opacity: 0.5; }
  100% { transform: translateY(-40px) scale(1); opacity: 0; }
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(173,20,87,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.2rem; font-weight: 800; color: #fff;
  text-decoration: none;
  display: flex; align-items: center; gap: 0.6rem;
}
.nav-logo-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
}
.nav-logo span { color: #FFE4F0; }
.nav-links {
  display: flex; gap: 2rem;
  list-style: none; align-items: center;
}
.nav-links a {
  color: rgba(255,255,255,0.85); font-weight: 700; font-size: 0.82rem;
  text-decoration: none; letter-spacing: 0.04em;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 0.3rem;
}
.nav-links a:hover { color: #fff; }
.nav-links .nav-cta {
  background: rgba(255,255,255,0.22);
  color: #fff !important;
  padding: 0.5rem 1.3rem;
  border-radius: 99px;
  border: 1.5px solid rgba(255,255,255,0.5);
  transition: transform 0.2s, background 0.2s !important;
}
.nav-links .nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.35);
}

/* ─── HERO ─── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
  z-index: 1;
}

/* Full-screen bowl background */
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(173,20,87,0.78) 0%,
    rgba(233,30,140,0.68) 40%,
    rgba(255,105,180,0.60) 70%,
    rgba(173,20,87,0.75) 100%
  );
}

/* Floating sparkles */
.sparkle {
  position: absolute; z-index: 1;
  color: rgba(255,255,255,0.55);
  font-size: 1.4rem;
  animation: sparkleFloat ease-in-out infinite;
  pointer-events: none;
  user-select: none;
}
.s1 { top: 15%; left: 8%;  animation-duration: 3.4s; animation-delay: 0s; font-size: 1.1rem; }
.s2 { top: 22%; right: 10%; animation-duration: 4.0s; animation-delay: 0.7s; font-size: 1.6rem; }
.s3 { bottom: 30%; left: 6%; animation-duration: 3.8s; animation-delay: 1.2s; font-size: 1.0rem; }
.s4 { bottom: 20%; right: 8%; animation-duration: 4.4s; animation-delay: 0.4s; font-size: 1.3rem; }
.s5 { top: 50%; left: 3%;  animation-duration: 3.2s; animation-delay: 1.8s; font-size: 0.9rem; }
@keyframes sparkleFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.55; }
  50%       { transform: translateY(-16px) scale(1.2); opacity: 1; }
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2;
  max-width: 720px;
  padding: 8rem 2rem 4rem;
  color: #fff;
}
.hero-eyebrow {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.92);
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 99px;
  display: inline-block;
  padding: 0.38rem 1.4rem;
  margin-bottom: 1.4rem;
  backdrop-filter: blur(8px);
}
.hero-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(3.4rem, 8vw, 7rem);
  color: #fff; line-height: 1.0; font-weight: 900;
  text-shadow: 0 4px 24px rgba(100,0,50,0.35);
}
.hero-title em {
  font-family: 'Fredoka', sans-serif;
  color: #FFE4F0;
  font-style: normal; font-size: 1.12em;
  font-weight: 700; display: block;
  text-shadow: 0 6px 30px rgba(100,0,50,0.40), 3px 3px 0 rgba(173,20,87,0.3);
}
.hero-sub {
  max-width: 520px; margin: 1.4rem auto 0;
  font-size: 1.05rem; font-weight: 600;
  color: rgba(255,255,255,0.92); line-height: 1.72;
  text-shadow: 0 2px 8px rgba(100,0,50,0.25);
}
.hero-cta {
  margin-top: 2.2rem;
  display: flex; gap: 1rem; flex-wrap: wrap;
  justify-content: center;
}
.btn-hero-primary {
  padding: 0.9rem 2.2rem;
  border-radius: 99px; border: none;
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800; font-size: 1rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: #fff;
  color: var(--rose);
  box-shadow: 0 8px 32px rgba(0,0,0,0.20);
  transition: transform 0.22s, box-shadow 0.22s;
}
.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.28);
}
.btn-hero-outline {
  padding: 0.9rem 2.2rem;
  border-radius: 99px;
  border: 2px solid rgba(255,255,255,0.7);
  font-family: 'Baloo 2', sans-serif;
  font-weight: 800; font-size: 1rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.12);
  color: #fff;
  backdrop-filter: blur(8px);
  transition: transform 0.22s, background 0.22s;
}
.btn-hero-outline:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,0.22);
}
.hero-badge {
  margin-top: 1.8rem;
  display: inline-block;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.88rem; font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 99px;
  padding: 0.4rem 1.4rem;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}

/* ─── BUTTONS ─── */
.btn {
  padding: 0.82rem 2rem;
  border-radius: 99px; border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.92rem;
  cursor: pointer; text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.22s, box-shadow 0.22s;
}
.btn:hover { transform: translateY(-3px); }
.btn i { font-size: 1.05em; }
.btn-rose {
  background: linear-gradient(135deg, #f06292, var(--deep-rose));
  color: #fff;
  box-shadow: 0 8px 28px rgba(196,32,96,0.36);
}
.btn-rose:hover { box-shadow: 0 16px 40px rgba(196,32,96,0.46); }
.btn-outline {
  background: var(--white); color: var(--rose);
  border: 2px solid var(--pink);
  box-shadow: 0 4px 16px rgba(200,80,130,0.10);
}
.btn-outline:hover { box-shadow: 0 8px 24px rgba(200,80,130,0.20); }

/* ─── SECTION UTILITIES ─── */
.section-head { text-align: center; margin-bottom: 3.5rem; }
.section-label {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--rose);
  background: rgba(224,84,122,0.08);
  border: 1px solid rgba(224,84,122,0.18);
  padding: 0.38rem 1rem; border-radius: 99px;
  margin-bottom: 1rem;
}
.section-label i { font-size: 0.9rem; }
.section-head h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--choco); font-weight: 800;
}
.section-head p { color: var(--muted); font-weight: 600; margin-top: 0.6rem; font-size: 0.92rem; }

/* ─── PICK YOUR SCOOP ─── */
#scoops {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #fce4ec, var(--cream));
  position: relative; z-index: 1;
}
.scoop-plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; max-width: 900px; margin: 0 auto;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border-radius: 26px;
  padding: 2.5rem 2rem 2.2rem;
  text-align: center;
  box-shadow: 0 4px 24px var(--shadow);
  border: 2px solid transparent;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px var(--shadow);
}
.plan-featured {
  border-color: var(--rose);
  background: linear-gradient(160deg, #fff5f9 0%, #fdf0ff 100%);
  transform: scale(1.04);
}
.plan-featured:hover { transform: scale(1.04) translateY(-8px); }
.plan-badge {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: #fff; font-size: 0.62rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.3rem 1.2rem; border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(196,32,96,0.38);
}
.plan-emoji {
  font-size: 2rem; margin-bottom: 0.5rem; display: block;
}
.plan-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.4rem; font-weight: 800;
  color: var(--choco); margin-bottom: 0.5rem;
}
.plan-price {
  font-size: 2.8rem; font-weight: 900;
  color: var(--rose); margin-bottom: 1.6rem;
  line-height: 1;
}
.plan-features {
  list-style: none; margin-bottom: 2rem; text-align: left;
}
.plan-features li {
  display: flex; align-items: center; gap: 0.55rem;
  font-size: 0.85rem; font-weight: 700; color: var(--choco);
  padding: 0.42rem 0;
  border-bottom: 1px solid var(--border);
}
.plan-features li:last-child { border-bottom: none; }
.plan-features li i { color: var(--rose); flex-shrink: 0; }
.plan-btn { width: 100%; justify-content: center; }

/* ─── PLAN INFO BOX ─── */
.plan-info-box {
  max-width: 680px; margin: 2.8rem auto 0;
  background: var(--white);
  border-radius: 22px;
  padding: 1.4rem 2rem;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1.5px dashed var(--pink);
}
.plan-info-row {
  display: flex; align-items: flex-start; gap: 0.8rem;
  font-size: 0.88rem; font-weight: 700;
  color: var(--choco); padding: 0.5rem 0;
  line-height: 1.55;
}
.plan-info-row span:first-child { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.05rem; }
.plan-info-row.warn span:last-child { color: var(--deep-rose); }
.plan-info-divider {
  height: 1px; background: var(--border); margin: 0.2rem 0;
}

/* ─── HOW IT WORKS ─── */
#how {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream), #fce4ec);
  position: relative; z-index: 1;
}
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.5rem; max-width: 980px; margin: 0 auto;
}
.step-card {
  background: var(--white);
  border-radius: 22px;
  padding: 2.4rem 1.8rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid rgba(200,120,160,0.08);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative; overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 22px 22px 0 0;
}
.step-card:nth-child(1)::before { background: linear-gradient(90deg, #f48fb1, #f06292); }
.step-card:nth-child(2)::before { background: linear-gradient(90deg, #ce93d8, #ab47bc); }
.step-card:nth-child(3)::before { background: linear-gradient(90deg, #80cbc4, #26a69a); }
.step-card:nth-child(4)::before { background: linear-gradient(90deg, #ffd54f, #ffa000); }
.step-card:hover { transform: translateY(-10px); box-shadow: 0 22px 52px var(--shadow); }

.step-icon-wrap {
  width: 64px; height: 64px;
  border-radius: 18px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem;
}
.step-card:nth-child(1) .step-icon-wrap { background: linear-gradient(135deg, #fce4ec, #f8efff); color: #E84080; }
.step-card:nth-child(2) .step-icon-wrap { background: linear-gradient(135deg, #f3e5f5, #ede7f6); color: #AB47BC; }
.step-card:nth-child(3) .step-icon-wrap { background: linear-gradient(135deg, #e0f2f1, #e8f5e9); color: #00897B; }
.step-card:nth-child(4) .step-icon-wrap { background: linear-gradient(135deg, #fff8e1, #fff3e0); color: #E65100; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  font-size: 0.68rem; font-weight: 900;
  background: var(--rose); color: #fff;
  margin-bottom: 0.85rem;
}
.step-title {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.15rem; font-weight: 800;
  color: var(--choco); margin-bottom: 0.5rem;
}
.step-text { font-size: 0.84rem; color: var(--muted); font-weight: 600; line-height: 1.68; }

/* ─── GIFTS GRID ─── */
#gifts {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, var(--cream), #fce4ec);
  position: relative; z-index: 1;
}
.gifts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(155px, 1fr));
  gap: 1.1rem; max-width: 1060px; margin: 0 auto;
}
.gift-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.8rem 1.2rem 1.6rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(200,70,110,0.07);
  border: 1px solid rgba(200,120,160,0.09);
  transition: transform 0.22s, box-shadow 0.22s;
  cursor: default;
}
.gift-card:hover {
  transform: translateY(-8px) scale(1.025);
  box-shadow: 0 18px 44px rgba(200,70,110,0.14);
}
.gift-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  margin: 0 auto 1rem;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.55rem;
}
.gift-img-wrap {
  width: 100%; height: 120px;
  border-radius: 14px;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  background: var(--blush);
}
.gift-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gift-card:hover .gift-img { transform: scale(1.08); }
.gift-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  color: var(--choco); margin-bottom: 0.3rem;
}
.gift-hint { font-size: 0.72rem; color: #c0a0b0; font-weight: 700; }

/* ─── REVIEWS ─── */
#reviews {
  padding: 6rem 0;
  background: linear-gradient(180deg, #fce4ec, var(--cream));
  position: relative; z-index: 1;
  overflow: hidden;
}
#reviews .section-head { padding: 0 2rem; }

/* Overall rating */
.overall-rating {
  display: flex; align-items: center; justify-content: center; gap: 1.2rem;
  background: var(--white);
  border-radius: 22px;
  padding: 1.2rem 2.4rem;
  max-width: 320px; margin: 0 auto 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
  border: 2px solid rgba(233,30,140,0.12);
}
.overall-score {
  font-family: 'Baloo 2', sans-serif;
  font-size: 3rem; font-weight: 900;
  color: var(--rose); line-height: 1;
}
.overall-stars {
  display: flex; gap: 0.2rem;
  color: #FFB800; font-size: 1.2rem;
  margin-bottom: 0.3rem;
}
.overall-label {
  font-size: 0.76rem; font-weight: 700;
  color: var(--muted);
}

/* Marquee wrapper */
.reviews-marquee {
  width: 100%;
  overflow: hidden;
  /* fade edges */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Scrolling track — contains 2 sets for seamless loop */
.reviews-track {
  display: flex;
  gap: 1.4rem;
  width: max-content;
  padding: 1.2rem 0.7rem;
  animation: marqueeScroll 32s linear infinite;
}
.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Review card */
.review-card {
  background: var(--white);
  border-radius: 22px;
  padding: 1.6rem 1.6rem 1.4rem;
  box-shadow: 0 4px 20px var(--shadow);
  border: 1px solid rgba(233,30,140,0.08);
  display: flex; flex-direction: column; gap: 0.9rem;
  width: 300px; flex-shrink: 0;
  transition: transform 0.25s, box-shadow 0.25s;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px var(--shadow);
}
.review-stars {
  display: flex; gap: 0.18rem;
  color: #FFB800; font-size: 1rem;
}
.review-text {
  font-size: 0.88rem; font-weight: 600;
  color: var(--choco); line-height: 1.72;
  flex: 1; font-style: italic;
}
.review-author {
  display: flex; align-items: center; gap: 0.8rem;
  padding-top: 0.8rem;
  border-top: 1px solid var(--border);
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.95rem; font-weight: 800; flex-shrink: 0;
}
.review-name {
  font-family: 'Baloo 2', sans-serif;
  font-size: 0.92rem; font-weight: 800; color: var(--choco);
}
.review-loc {
  font-size: 0.72rem; font-weight: 700; color: var(--muted);
  display: flex; align-items: center; gap: 0.22rem;
  margin-top: 0.12rem;
}
.review-loc i { font-size: 0.68rem; }

/* ─── CTA ─── */
#cta {
  padding: 7rem 2rem; text-align: center;
  background: linear-gradient(135deg, #E91E8C, #AD1457, #E91E8C, #FF4081);
  background-size: 400% 400%;
  animation: bgShift 10s ease infinite;
  position: relative; z-index: 1;
}
.cta-inner { max-width: 560px; margin: 0 auto; }
#cta .section-label {
  color: rgba(255,255,255,0.88);
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.25);
  margin-bottom: 1.2rem;
}
#cta h2 {
  font-family: 'Baloo 2', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 900;
  color: #fff;
  text-shadow: 0 4px 20px rgba(100,0,50,0.25);
  margin-bottom: 1rem;
}
#cta p {
  color: rgba(255,255,255,0.88); font-weight: 600;
  font-size: 0.98rem; line-height: 1.74;
  margin-bottom: 2.4rem;
}
.btn-white-cta {
  background: #fff; color: var(--rose);
  font-size: 0.95rem; padding: 1rem 2.6rem;
  box-shadow: 0 10px 36px rgba(180,30,80,0.22);
}
.btn-white-cta:hover { box-shadow: 0 18px 48px rgba(180,30,80,0.34); }

/* ─── FOOTER ─── */
footer {
  background: #5c0030; color: #ffd6e8;
  text-align: center; padding: 2.5rem 1.5rem;
  font-weight: 700; font-size: 0.84rem; letter-spacing: 0.02em;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
}
.footer-logo {
  width: 72px; height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,182,193,0.5);
  margin-bottom: 0.4rem;
}
footer span { color: #ffb6cc; font-family: 'Baloo 2', sans-serif; font-weight: 900; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 99px; }

/* ─── SCROLL REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.shown { opacity: 1; transform: translateY(0); }

/* ─── BG SHIFT ANIMATION ─── */
@keyframes bgShift {
  0%, 100% { background-position: 0% 50%; }
  50%       { background-position: 100% 50%; }
}

/* ─── MODAL (shared base, kept for future use) ─── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 400;
  background: rgba(44,26,20,0.52);
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open {
  opacity: 1; pointer-events: auto;
}
.modal {
  background: var(--white);
  border-radius: 28px;
  width: 100%; max-width: 500px;
  max-height: 92vh; overflow-y: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.22);
  transform: scale(0.9) translateY(24px);
  transition: transform 0.38s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid var(--border);
}
.modal-title-wrap {
  display: flex; align-items: center; gap: 0.6rem;
}
.modal-header h3 {
  font-family: 'Baloo 2', sans-serif;
  font-size: 1.3rem; font-weight: 800; color: var(--choco);
}
.modal-close {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1.1rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, color 0.2s; flex-shrink: 0;
}
.modal-close:hover { background: var(--blush); color: var(--rose); }
.modal-body { padding: 1.8rem; }

.dm-info {
  font-size: 0.9rem; font-weight: 600; color: var(--muted);
  line-height: 1.6; margin-bottom: 1.2rem;
}
.dm-plan-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(135deg, #fce4ec, #f3e5f5);
  color: var(--deep-rose); font-weight: 800; font-size: 0.82rem;
  padding: 0.4rem 1.1rem; border-radius: 99px;
  margin-bottom: 1.4rem;
}
.dm-message-box {
  background: var(--blush);
  border: 1.5px solid var(--pink);
  border-radius: 16px;
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.4rem;
}
.dm-message-label {
  font-size: 0.65rem; font-weight: 800; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 0.6rem;
}
.dm-message-text {
  font-size: 0.95rem; font-weight: 700; color: var(--choco);
  line-height: 1.65;
}
.dm-actions {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin-bottom: 1rem;
}
.dm-copy-btn { flex: 1; justify-content: center; min-width: 120px; }
.dm-actions .btn-rose { flex: 1.4; justify-content: center; min-width: 160px; }
.dm-note {
  display: flex; align-items: flex-start; gap: 0.45rem;
  font-size: 0.78rem; font-weight: 600; color: var(--muted);
  background: rgba(200,120,160,0.06);
  border-radius: 10px; padding: 0.7rem 0.9rem;
}
.dm-note i { color: var(--rose); flex-shrink: 0; margin-top: 0.05rem; }

/* ─── COPY TOAST ─── */
.copy-toast {
  position: fixed; bottom: 2rem; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--deep-rose); color: #fff;
  display: flex; align-items: center; gap: 0.55rem;
  padding: 0.85rem 1.6rem; border-radius: 99px;
  font-size: 0.88rem; font-weight: 700;
  font-family: 'Baloo 2', sans-serif;
  box-shadow: 0 8px 28px rgba(173,20,87,0.38);
  z-index: 999; opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.4,0.64,1), opacity 0.3s;
  pointer-events: none; white-space: nowrap;
}
.copy-toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.copy-toast i { font-size: 1.1rem; color: #FFE4F0; }

/* ─── RESPONSIVE ─── */
@media (max-width: 800px) {
  .hero-content { padding: 7rem 1.5rem 3.5rem; }
  .hero-title   { font-size: clamp(2.8rem, 12vw, 4.5rem); }

  nav { padding: 0.9rem 1.4rem; background: rgba(173,20,87,0.92); }
  .nav-links { display: none; }

  .scoop-plans { grid-template-columns: 1fr; max-width: 380px; }
  .plan-featured { transform: none; }
  .plan-featured:hover { transform: translateY(-8px); }

  .gifts-grid { grid-template-columns: repeat(auto-fill, minmax(148px, 1fr)); }
  .dm-actions { flex-direction: column; }
  .dm-copy-btn, .dm-actions .btn-rose { flex: none; width: 100%; }
}

@media (max-width: 500px) {
  .steps { grid-template-columns: 1fr; }
  .modal { border-radius: 20px 20px 0 0; margin-top: auto; max-height: 85vh; }
  .modal-overlay { align-items: flex-end; }
}
