/* ============================================================
   FIORA BLOOM — Design System
   Pure. Fresh. Forever Fiora.
   Palette: deep botanical green · blush pink · cream · soft gold
   Type: Fraunces (serif display) + Plus Jakarta Sans (body)
   ============================================================ */

:root {
  --cream:      #f7f3ea;
  --cream-2:    #f1ebdf;
  --cream-3:    #eae2d3;
  --green-deep: #22392b;
  --green:      #2e4a38;
  --green-soft: #5d7767;
  --green-mist: #dfe7de;
  --pink:       #dfa0b2;
  --pink-deep:  #c67d93;
  --pink-soft:  #f3d3db;
  --pink-mist:  #f9e9ed;
  --gold:       #b9975f;
  --gold-soft:  #e6d5b4;
  --ink:        #26332a;
  --muted:      #6e7a70;
  --white:      #fffdf9;
  --wa:         #1fa855;
  --serif:  "Fraunces", Georgia, serif;
  --sans:   "Plus Jakarta Sans", -apple-system, sans-serif;
  --shadow-sm: 0 2px 10px rgba(34, 57, 43, .07);
  --shadow-md: 0 10px 34px rgba(34, 57, 43, .12);
  --shadow-lg: 0 24px 60px rgba(34, 57, 43, .18);
  --radius: 20px;
  --ease: cubic-bezier(.22, .8, .3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.wrap { width: min(1180px, 92%); margin-inline: auto; }

h1, h2, h3, h4 { font-family: var(--serif); color: var(--green-deep); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.1rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.75rem); }
h1 em { font-style: italic; color: var(--pink-deep); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--pink-deep); margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--pink); border-radius: 2px; }
.eyebrow.gold { color: var(--gold); }
.eyebrow.gold::before { background: var(--gold); }
.eyebrow.light { color: var(--pink-soft); }
.eyebrow.light::before { background: var(--pink-soft); }

/* ---------------- Reveal on scroll ---------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001s !important; animation-delay: 0s !important; transition-duration: .001s !important; }
}

/* ---------------- Announcement ---------------- */
.announce {
  background: var(--green-deep); color: var(--cream);
  overflow: hidden; white-space: nowrap; font-size: .82rem; padding: .55rem 0;
  position: relative; z-index: 60;
}
.announce b { color: var(--pink-soft); font-weight: 700; }
.track { display: inline-flex; gap: 3.5rem; animation: marquee 32s linear infinite; padding-left: 1rem; }
.track span { display: inline-flex; gap: .4rem; align-items: center; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------------- Header ---------------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 234, .88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(34, 57, 43, .07);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .8rem 0; }
.brand { display: flex; align-items: center; gap: .6rem; }
.brand img { height: 44px; }
.brand .word { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--green-deep); letter-spacing: -.02em; }
.brand .word i { font-style: italic; font-weight: 500; color: var(--pink-deep); margin-left: .18rem; }
.nav-links { display: flex; gap: 1.9rem; font-weight: 600; font-size: .93rem; color: var(--green); }
.nav-links a { position: relative; padding: .3rem 0; transition: color .25s; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px;
  background: var(--pink); border-radius: 2px; transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav-links a:hover { color: var(--pink-deep); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .7rem; }
.icon-btn {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  background: var(--white); border: 1px solid rgba(34, 57, 43, .1); color: var(--green-deep);
  position: relative; transition: all .25s var(--ease); box-shadow: var(--shadow-sm);
}
.icon-btn:hover { background: var(--green-deep); color: var(--cream); transform: translateY(-2px); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px; min-width: 20px; height: 20px; padding: 0 5px;
  background: var(--pink-deep); color: #fff; border-radius: 999px;
  font-size: .68rem; font-weight: 800; display: none; place-items: center; line-height: 20px; text-align: center;
}
.cart-count.show { display: grid; }
.burger { display: none; }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 700; font-size: .95rem;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.btn .arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--green-deep); color: var(--cream); box-shadow: 0 10px 24px rgba(34, 57, 43, .28); }
.btn-primary:hover { background: var(--green); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(34, 57, 43, .32); }
.btn-blush { background: var(--pink-deep); color: #fff; box-shadow: 0 10px 24px rgba(198, 125, 147, .35); }
.btn-blush:hover { background: var(--pink); transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.6px solid rgba(34, 57, 43, .25); color: var(--green-deep); }
.btn-ghost:hover { border-color: var(--green-deep); background: var(--green-deep); color: var(--cream); transform: translateY(-2px); }
.btn-wa { background: var(--wa); color: #fff; box-shadow: 0 10px 24px rgba(31, 168, 85, .3); }
.btn-wa:hover { background: #17924a; transform: translateY(-2px); }
.btn-block { width: 100%; }
.nav-wa { padding: .68rem 1.15rem; }

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 4.2rem 0 5rem; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(620px 420px at 88% 18%, rgba(223, 160, 178, .16), transparent 65%),
    radial-gradient(520px 420px at 4% 90%, rgba(46, 74, 56, .08), transparent 60%);
  pointer-events: none;
}
.hero .wrap { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; position: relative; }
.hero-copy .eyebrow { animation: fadeUp .8s var(--ease) both; }
.hero-copy h1 { animation: fadeUp .8s .1s var(--ease) both; margin-bottom: 1.2rem; }
.hero-copy .lead { animation: fadeUp .8s .2s var(--ease) both; font-size: 1.08rem; color: var(--muted); max-width: 52ch; margin-bottom: 1.9rem; }
.hero-cta { display: flex; gap: .9rem; flex-wrap: wrap; animation: fadeUp .8s .3s var(--ease) both; }
.hero-cta.center { justify-content: center; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; margin-top: 2.1rem; animation: fadeUp .8s .4s var(--ease) both; }
.hero-trust .t { display: flex; align-items: center; gap: .5rem; font-size: .84rem; font-weight: 600; color: var(--green-soft); }
.hero-trust svg { width: 18px; height: 18px; color: var(--pink-deep); flex: none; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

.hero-visual { position: relative; display: grid; place-items: center; animation: fadeUp 1s .25s var(--ease) both; }
.ring {
  position: absolute; width: 116%; aspect-ratio: 1; border-radius: 50%;
  border: 1.5px dashed rgba(198, 125, 147, .4);
  animation: spin 50s linear infinite;
}
.ring.r2 { width: 132%; border-color: rgba(34, 57, 43, .14); animation-duration: 80s; animation-direction: reverse; }
@keyframes spin { to { transform: rotate(360deg); } }
.plate {
  width: min(430px, 88%); aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(150deg, #fff 0%, var(--pink-mist) 55%, var(--cream-2) 100%);
  box-shadow: var(--shadow-lg), inset 0 0 0 10px rgba(255, 255, 255, .55);
  display: grid; place-items: center; overflow: hidden; position: relative;
}
.plate img { width: 88%; animation: floaty 6s ease-in-out infinite; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero-badge {
  position: absolute; display: flex; align-items: center; gap: .6rem;
  background: var(--white); padding: .65rem .95rem; border-radius: 16px;
  box-shadow: var(--shadow-md); font-size: .8rem; font-weight: 700; color: var(--green-deep);
  border: 1px solid rgba(34, 57, 43, .06);
}
.hero-badge small { display: block; font-weight: 500; color: var(--muted); font-size: .72rem; }
.hero-badge .em { font-size: 1.3rem; }
.hero-badge.b1 { top: 6%; left: -2%; animation: bob 5s ease-in-out infinite; }
.hero-badge.b2 { bottom: 10%; right: -3%; animation: bob 6s .8s ease-in-out infinite; }
.hero-badge.b3 { bottom: -4%; left: 10%; animation: bob 5.5s .4s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* Floating petals */
.petals { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.petal {
  position: absolute; top: -30px; width: 16px; height: 22px;
  background: linear-gradient(160deg, var(--pink-soft), var(--pink));
  border-radius: 80% 20% 80% 20% / 90% 30% 70% 10%;
  opacity: .55; animation: fall 13s linear infinite;
}
.petal.p1 { left: 8%;  animation-delay: 0s;   transform: scale(.8); }
.petal.p2 { left: 22%; animation-delay: 3.2s; transform: scale(1.1); }
.petal.p3 { left: 38%; animation-delay: 6.5s; transform: scale(.7); }
.petal.p4 { left: 55%; animation-delay: 1.6s; transform: scale(.9); }
.petal.p5 { left: 70%; animation-delay: 8.4s; transform: scale(1.2); }
.petal.p6 { left: 84%; animation-delay: 4.8s; transform: scale(.85); }
.petal.p7 { left: 94%; animation-delay: 10.7s; transform: scale(.7); }
@keyframes fall {
  0%   { transform: translateY(-5vh) rotate(0deg)    translateX(0); opacity: 0; }
  8%   { opacity: .55; }
  100% { transform: translateY(105vh) rotate(340deg) translateX(-60px); opacity: 0; }
}

/* ---------------- Trust strip ---------------- */
.trust-strip { background: var(--white); border-block: 1px solid rgba(34, 57, 43, .07); }
.trust-strip .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; padding: 1.4rem 0; }
.trust-strip .cell { display: flex; align-items: center; gap: .85rem; font-size: .82rem; color: var(--muted); }
.trust-strip .cell b { display: block; color: var(--green-deep); font-size: .9rem; }
.trust-strip svg { width: 30px; height: 30px; color: var(--pink-deep); flex: none; }

/* ---------------- Sections ---------------- */
.section { padding: 5.2rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.section-head p { color: var(--muted); margin-top: .9rem; }

/* ---------------- Filters ---------------- */
.filters { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; margin-bottom: 2.4rem; }
.filter {
  padding: .68rem 1.35rem; border-radius: 999px; font-weight: 700; font-size: .9rem;
  background: var(--white); color: var(--green); border: 1.4px solid rgba(34, 57, 43, .12);
  transition: all .25s var(--ease); display: inline-flex; align-items: center; gap: .5rem;
}
.filter .ic { font-size: 1rem; }
.filter:hover { border-color: var(--pink-deep); color: var(--pink-deep); transform: translateY(-2px); }
.filter.active { background: var(--green-deep); color: var(--cream); border-color: var(--green-deep); box-shadow: 0 8px 20px rgba(34, 57, 43, .25); }

/* ---------------- Product grid ---------------- */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(34, 57, 43, .07); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  animation: cardIn .7s var(--ease) both;
}
@keyframes cardIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.thumb { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--pink-mist); }
.thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .thumb img { transform: scale(1.07); }
.badge {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--pink-deep); color: #fff; font-size: .68rem; font-weight: 800;
  letter-spacing: .08em; text-transform: uppercase; padding: .34rem .7rem; border-radius: 999px;
  box-shadow: 0 4px 12px rgba(198, 125, 147, .4);
}
.badge.leaf { background: var(--green); box-shadow: 0 4px 12px rgba(34, 57, 43, .3); }
.badge.gold { background: var(--gold); box-shadow: 0 4px 12px rgba(185, 151, 95, .4); }
.fav {
  position: absolute; top: 12px; right: 12px; z-index: 2; width: 36px; height: 36px;
  border-radius: 50%; background: rgba(255, 255, 255, .92); display: grid; place-items: center;
  color: var(--pink-deep); transition: all .25s; box-shadow: var(--shadow-sm);
}
.fav svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; }
.fav:hover, .fav.on { background: var(--pink-deep); color: #fff; }
.fav.on svg { fill: currentColor; }
.card-body { padding: 1.15rem 1.2rem 1.3rem; display: flex; flex-direction: column; flex: 1; }
.cat-tag { font-size: .68rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
.card-body h3 { font-size: 1.18rem; margin-bottom: .1rem; }
.sub-name { font-size: .8rem; color: var(--pink-deep); font-style: italic; font-family: var(--serif); margin-bottom: .5rem; }
.blurb { font-size: .84rem; color: var(--muted); margin-bottom: .85rem; flex: 1; }
.opt-label { font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--green-soft); margin-bottom: .35rem; }
.packs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: .85rem; }
.pack {
  font-size: .74rem; font-weight: 700; padding: .32rem .7rem; border-radius: 999px;
  border: 1.3px solid rgba(34, 57, 43, .14); color: var(--green-soft); transition: all .2s;
}
.pack:hover { border-color: var(--pink-deep); color: var(--pink-deep); }
.pack.active { background: var(--pink-mist); border-color: var(--pink-deep); color: var(--pink-deep); }
.price-row { margin-bottom: .85rem; }
.price { font-family: var(--serif); font-weight: 700; font-size: 1.25rem; color: var(--green-deep); }
.price small { font-size: .76rem; color: var(--muted); font-family: var(--sans); font-weight: 500; }
.add {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; padding: .8rem; border-radius: 14px; font-weight: 700; font-size: .9rem;
  background: var(--green-deep); color: var(--cream); transition: all .3s var(--ease);
}
.add svg { width: 17px; height: 17px; }
.add:hover { background: var(--pink-deep); box-shadow: 0 10px 22px rgba(198, 125, 147, .35); }

/* ---------------- Gifting band ---------------- */
.gifting {
  background:
    radial-gradient(700px 380px at 110% 0%, rgba(223, 160, 178, .18), transparent 60%),
    radial-gradient(600px 420px at -10% 100%, rgba(185, 151, 95, .14), transparent 60%),
    var(--green-deep);
  color: var(--cream); padding: 5.5rem 0; position: relative; overflow: hidden;
}
.gifting .wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; }
.gifting h2 { color: var(--cream); margin-bottom: 1.1rem; }
.gifting p { color: rgba(247, 243, 234, .78); max-width: 54ch; }
.gifting p strong { color: var(--pink-soft); }
.gift-steps { margin: 1.9rem 0 2.1rem; display: grid; gap: 1rem; }
.gs { display: flex; gap: .95rem; align-items: center; }
.gs .n {
  width: 40px; height: 40px; flex: none; border-radius: 50%; display: grid; place-items: center;
  background: rgba(223, 160, 178, .16); border: 1.4px solid rgba(223, 160, 178, .5);
  color: var(--pink-soft); font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
}
.gs b { display: block; font-size: .98rem; }
.gs small { color: rgba(247, 243, 234, .6); font-size: .82rem; }
.gift-visual { position: relative; }
.gift-visual img {
  border-radius: 26px; box-shadow: 0 30px 70px rgba(0, 0, 0, .35);
  transform: rotate(2deg); transition: transform .6s var(--ease);
}
.gift-visual:hover img { transform: rotate(0deg) scale(1.02); }
.gift-tag {
  position: absolute; bottom: -18px; left: -14px; display: flex; gap: .6rem; align-items: center;
  background: var(--white); color: var(--green-deep); padding: .75rem 1.05rem; border-radius: 16px;
  box-shadow: var(--shadow-lg); font-size: .82rem;
}
.gift-tag b { display: block; }
.gift-tag span { color: var(--muted); font-size: .74rem; }
.gift-tag .em { font-size: 1.4rem; }

/* ---------------- Story ---------------- */
.story .wrap { display: grid; grid-template-columns: .92fr 1.08fr; gap: 3.6rem; align-items: center; }
.story-img { position: relative; }
.story-img img { border-radius: 26px; box-shadow: var(--shadow-lg); }
.stamp {
  position: absolute; bottom: -20px; right: -14px; display: flex; gap: .6rem; align-items: center;
  background: var(--green-deep); color: var(--cream); padding: .8rem 1.1rem; border-radius: 16px;
  box-shadow: var(--shadow-lg); font-size: .82rem;
}
.stamp b { display: block; }
.stamp span { color: rgba(247, 243, 234, .65); font-size: .74rem; }
.stamp .em { font-size: 1.4rem; }
.story-copy h2 { margin-bottom: 1.1rem; }
.story-copy p { color: var(--muted); margin-bottom: 1rem; }
.story-points { margin-top: 1.6rem; display: grid; gap: .9rem; }
.pt { display: flex; gap: .8rem; font-size: .92rem; color: var(--muted); }
.pt b { color: var(--green-deep); }
.pt svg { width: 22px; height: 22px; flex: none; color: var(--pink-deep); background: var(--pink-mist); border-radius: 50%; padding: 4px; }

/* ---------------- How ---------------- */
.how { background: var(--cream-2); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.step {
  background: var(--white); border-radius: var(--radius); padding: 2rem 1.5rem 1.7rem;
  text-align: center; position: relative; border: 1px solid rgba(34, 57, 43, .07);
  box-shadow: var(--shadow-sm); transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step .n {
  position: absolute; top: 14px; left: 16px; font-family: var(--serif); font-size: 2.2rem;
  font-weight: 600; color: var(--pink-soft); line-height: 1;
}
.step .ic { font-size: 2.3rem; margin-bottom: .8rem; }
.step h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.step p { font-size: .85rem; color: var(--muted); }

/* ---------------- Pay / delivery ---------------- */
.paydel { background: var(--green-deep); color: var(--cream); }
.paydel .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 3.4rem; }
.paydel h3 { color: var(--cream); margin-bottom: .7rem; }
.paydel .sub { color: rgba(247, 243, 234, .72); font-size: .93rem; margin-bottom: 1.4rem; }
.logos { display: flex; flex-wrap: wrap; gap: .6rem; }
.chip {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  padding: .55rem .95rem; border-radius: 999px; transition: all .25s;
}
.chip:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.chip small { font-weight: 500; color: rgba(247, 243, 234, .6); }
.dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

/* ---------------- Testimonials ---------------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi {
  background: var(--white); border-radius: var(--radius); padding: 1.9rem 1.7rem;
  border: 1px solid rgba(34, 57, 43, .07); box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.testi:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); letter-spacing: .2em; margin-bottom: .9rem; }
.testi p { font-size: .93rem; color: var(--muted); font-style: italic; flex: 1; }
.who { display: flex; gap: .75rem; align-items: center; margin-top: 1.3rem; }
.av {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: var(--pink-mist); color: var(--pink-deep); font-weight: 800; font-family: var(--serif); font-size: 1.1rem;
}
.who b { display: block; font-size: .9rem; color: var(--green-deep); }
.who span { font-size: .78rem; color: var(--muted); }

/* ---------------- CTA ---------------- */
.cta-wrap { padding-top: 0; }
.cta-banner {
  background:
    radial-gradient(500px 300px at 90% 10%, rgba(223, 160, 178, .25), transparent 60%),
    radial-gradient(420px 300px at 5% 95%, rgba(185, 151, 95, .2), transparent 60%),
    var(--green-deep);
  border-radius: 30px; padding: 4rem 2.4rem; text-align: center; color: var(--cream);
  box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.cta-banner h2 { color: var(--cream); margin-bottom: .8rem; }
.cta-banner p { color: rgba(247, 243, 234, .75); max-width: 46ch; margin: 0 auto 1.8rem; }

/* ---------------- Footer ---------------- */
.footer { background: #1a2c21; color: rgba(247, 243, 234, .72); padding: 4rem 0 1.8rem; font-size: .9rem; }
.cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; margin-bottom: 2.6rem; }
.foot-brand { margin-bottom: 1rem; }
.foot-brand img { height: 42px; }
.foot-brand .word { color: var(--cream); }
.footer h5 { color: var(--cream); font-size: .95rem; margin-bottom: 1rem; font-family: var(--serif); letter-spacing: .02em; }
.footer ul { list-style: none; display: grid; gap: .55rem; }
.footer a:hover { color: var(--pink-soft); }
.contact-li { display: flex; align-items: center; gap: .55rem; }
.contact-li svg { width: 16px; height: 16px; color: var(--pink); flex: none; }
.socials { display: flex; gap: .6rem; margin-top: 1.1rem; }
.socials a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255, 255, 255, .07); transition: all .25s;
}
.socials a:hover { background: var(--pink-deep); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; fill: var(--cream); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, .09); padding-top: 1.5rem;
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem;
  color: rgba(247, 243, 234, .5);
}

/* ---------------- WhatsApp float ---------------- */
.wa-float {
  position: fixed; bottom: 22px; right: 22px; z-index: 45;
  display: flex; align-items: center; gap: .55rem;
  background: var(--wa); color: #fff; font-weight: 700; font-size: .88rem;
  padding: .85rem 1.25rem; border-radius: 999px; box-shadow: 0 14px 34px rgba(31, 168, 85, .45);
  transition: transform .3s var(--ease);
}
.wa-float:hover { transform: translateY(-3px) scale(1.03); }
.wa-float svg { width: 22px; height: 22px; fill: #fff; }
.wa-float .pulse {
  position: absolute; inset: 0; border-radius: 999px; background: var(--wa);
  animation: pulse 2.2s ease-out infinite; z-index: -1;
}
@keyframes pulse { 0% { transform: scale(1); opacity: .55; } 100% { transform: scale(1.35); opacity: 0; } }

/* ---------------- Cart drawer ---------------- */
.overlay {
  position: fixed; inset: 0; background: rgba(26, 44, 33, .5); backdrop-filter: blur(3px);
  opacity: 0; pointer-events: none; transition: opacity .35s; z-index: 70;
}
.overlay.open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(430px, 94vw); z-index: 75;
  background: var(--cream); display: flex; flex-direction: column;
  transform: translateX(102%); transition: transform .45s var(--ease);
  box-shadow: -20px 0 60px rgba(0, 0, 0, .2);
}
.drawer.open { transform: none; }
.drawer-head {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.3rem 1.5rem; border-bottom: 1px solid rgba(34, 57, 43, .09); background: var(--white);
}
.drawer-head h3 { font-size: 1.25rem; }
.close {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--cream-2); color: var(--green-deep); transition: all .25s;
}
.close:hover { background: var(--pink-deep); color: #fff; transform: rotate(90deg); }
.close svg { width: 17px; height: 17px; }
.drawer-body { flex: 1; overflow-y: auto; padding: 1.2rem 1.5rem; }
.cart-empty { text-align: center; padding: 3.5rem 1rem; color: var(--muted); }
.cart-empty .em { font-size: 3rem; margin-bottom: .8rem; }
.cart-item {
  display: flex; gap: .95rem; padding: .95rem 0; border-bottom: 1px dashed rgba(34, 57, 43, .12);
}
.cart-item img { width: 76px; height: 76px; border-radius: 14px; object-fit: cover; flex: none; background: var(--pink-mist); }
.ci-main { flex: 1; min-width: 0; }
.ci-main h4 { font-size: .98rem; margin-bottom: .15rem; }
.ci-pack { font-size: .76rem; color: var(--muted); margin-bottom: .3rem; }
.ci-price { font-weight: 800; color: var(--pink-deep); font-size: .92rem; margin-bottom: .45rem; }
.qty {
  display: inline-flex; align-items: center; gap: .15rem; background: var(--white);
  border: 1px solid rgba(34, 57, 43, .13); border-radius: 999px; padding: .12rem .3rem;
}
.qty button { width: 26px; height: 26px; border-radius: 50%; font-size: 1rem; font-weight: 700; color: var(--green-deep); display: grid; place-items: center; }
.qty button:hover { background: var(--pink-mist); color: var(--pink-deep); }
.qty span { min-width: 22px; text-align: center; font-weight: 700; font-size: .88rem; }
.ci-remove { font-size: .74rem; color: var(--muted); text-decoration: underline; margin-left: .6rem; }
.ci-remove:hover { color: #c0392b; }
.drawer-foot { padding: 1.2rem 1.5rem 1.4rem; background: var(--white); border-top: 1px solid rgba(34, 57, 43, .09); }
.summary-row { display: flex; justify-content: space-between; font-size: .9rem; color: var(--muted); padding: .22rem 0; }
.summary-row.total { font-weight: 800; color: var(--green-deep); font-size: 1.15rem; border-top: 1px dashed rgba(34, 57, 43, .15); margin-top: .5rem; padding-top: .7rem; font-family: var(--serif); }
.free-tag { color: var(--pink-deep); font-weight: 700; }
.ship-note { font-size: .78rem; color: var(--green-soft); background: var(--green-mist); border-radius: 10px; padding: .55rem .8rem; margin: .7rem 0 .9rem; text-align: center; font-weight: 600; }
.pay-mini { display: flex; gap: .45rem; justify-content: center; margin-top: .8rem; flex-wrap: wrap; }
.pay-mini span { font-size: .68rem; font-weight: 700; color: var(--muted); background: var(--cream-2); border-radius: 999px; padding: .3rem .7rem; }

/* ---------------- Quick view ---------------- */
.qv {
  position: fixed; inset: 0; z-index: 80; display: grid; place-items: center; padding: 1.2rem;
  background: rgba(26, 44, 33, .55); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.qv.open { opacity: 1; pointer-events: auto; }
.qv-card {
  background: var(--cream); border-radius: 24px; max-width: 760px; width: 100%;
  max-height: 88vh; overflow-y: auto; position: relative; box-shadow: var(--shadow-lg);
  transform: translateY(24px) scale(.97); transition: transform .35s var(--ease);
}
.qv.open .qv-card { transform: none; }
.qv-close { position: absolute; top: 14px; right: 14px; z-index: 2; background: var(--white); }
.qv-body { display: grid; grid-template-columns: 1fr 1fr; }
.qv-img { background: var(--pink-mist); }
.qv-img img { width: 100%; height: 100%; object-fit: cover; }
.qv-info { padding: 2rem 1.8rem; display: flex; flex-direction: column; }
.qv-info h3 { font-size: 1.5rem; margin-bottom: .2rem; }
.qv-info .desc { font-size: .9rem; color: var(--muted); margin: .8rem 0 1.1rem; flex: 1; }
.qv-price { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; color: var(--green-deep); margin-bottom: 1rem; }
.qv-price small { font-size: .8rem; font-family: var(--sans); color: var(--muted); font-weight: 500; }

/* ---------------- Mobile menu ---------------- */
.mobile-menu {
  position: fixed; inset: 0; z-index: 90; background: var(--green-deep);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  transform: translateY(-102%); transition: transform .5s var(--ease);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  color: var(--cream); font-family: var(--serif); font-size: 1.7rem; font-weight: 600;
  transition: color .25s;
}
.mobile-menu a:hover { color: var(--pink); }
.close-m { position: absolute; top: 22px; right: 22px; color: var(--cream); width: 44px; height: 44px; border-radius: 50%; background: rgba(255, 255, 255, .1); display: grid; place-items: center; }

/* ---------------- Toast ---------------- */
.toast {
  position: fixed; bottom: 26px; left: 50%; transform: translate(-50%, 80px); z-index: 95;
  display: flex; align-items: center; gap: .6rem;
  background: var(--green-deep); color: var(--cream); font-weight: 600; font-size: .9rem;
  padding: .85rem 1.4rem; border-radius: 999px; box-shadow: var(--shadow-lg);
  opacity: 0; transition: all .4s var(--ease); pointer-events: none;
}
.toast.show { transform: translate(-50%, 0); opacity: 1; }
.toast svg { width: 18px; height: 18px; color: var(--pink); flex: none; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .grid { grid-template-columns: repeat(3, 1fr); }
  .trust-strip .wrap { grid-template-columns: repeat(2, 1fr); }
  .cols { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: grid; }
  .wa-txt { display: none; }
  .nav-wa { padding: .68rem .8rem; }
  .hero { padding: 2.8rem 0 3.6rem; }
  .hero .wrap { grid-template-columns: 1fr; gap: 3.2rem; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: .5rem; }
  .hero-badge.b1 { left: 2%; }
  .hero-badge.b2 { right: 0; }
  .hero-badge.b3 { display: none; }
  .gifting .wrap, .story .wrap, .paydel .wrap { grid-template-columns: 1fr; gap: 2.6rem; }
  .story-img { order: -1; }
  .gift-visual { margin-top: 1rem; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .qv-body { grid-template-columns: 1fr; }
  .qv-img { aspect-ratio: 16/10; }
  .qv-img img { height: 100%; }
  .section { padding: 3.8rem 0; }
}

@media (max-width: 520px) {
  .grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .card-body { padding: .9rem .85rem 1rem; }
  .card-body h3 { font-size: 1rem; }
  .blurb { display: none; }
  .sub-name { margin-bottom: .4rem; }
  .add { font-size: .82rem; padding: .7rem; }
  .price { font-size: 1.05rem; }
  .steps { grid-template-columns: 1fr; }
  .trust-strip .wrap { grid-template-columns: 1fr; gap: .9rem; padding: 1.1rem 0; }
  .cols { grid-template-columns: 1fr; gap: 1.9rem; }
  .cta-banner { padding: 2.8rem 1.4rem; }
  .wa-float span:not(.pulse) { display: none; }
  .wa-float { padding: .9rem; }
  .foot-bottom { justify-content: center; text-align: center; }
  .brand img { height: 38px; }
  .brand .word { font-size: 1.3rem; }
}
