@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Fraunces:wght@700;800;900&display=swap');

*{margin:0;padding:0;box-sizing:border-box}
:root{
  --rose:#e11d48;
  --rose-light:#fb7185;
  --rose-soft:#fff1f2;
  --rose-glow:rgba(225,29,72,.1);
  --blue:#1e40af;
  --blue-light:#3b82f6;
  --blue-soft:#eff6ff;
  --teal:#0d9488;
  --teal-soft:#f0fdfa;
  --purple:#7c3aed;
  --purple-soft:#f5f3ff;
  --dark:#0f172a;
  --text:#1e293b;
  --text-mid:#475569;
  --text-light:#64748b;
  --muted:#94a3b8;
  --border:#e2e8f0;
  --bg:#f8fafc;
  --card:#ffffff;
  --shadow-xs:0 1px 2px rgba(0,0,0,.03);
  --shadow:0 2px 8px rgba(0,0,0,.04);
  --shadow-md:0 4px 20px rgba(0,0,0,.06);
  --shadow-lg:0 12px 40px rgba(0,0,0,.08);
  --shadow-xl:0 20px 60px rgba(0,0,0,.1);
  --r:16px;
  --r-sm:10px;
  --r-lg:24px;
}
html{scroll-behavior:smooth}
body{font-family:'Plus Jakarta Sans',system-ui,sans-serif;color:var(--text);line-height:1.65;background:var(--bg)}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit;transition:.2s}

/* ===== FLOATING HEARTS ===== */
.hearts-bg{position:fixed;inset:0;pointer-events:none;z-index:0;overflow:hidden}
.hearts-bg span{position:absolute;font-size:1.2rem;opacity:.06;animation:floatHeart linear infinite}
.hearts-bg span:nth-child(1){left:5%;font-size:1.5rem;animation-duration:18s;animation-delay:0s}
.hearts-bg span:nth-child(2){left:15%;font-size:.9rem;animation-duration:22s;animation-delay:3s}
.hearts-bg span:nth-child(3){left:28%;font-size:1.8rem;animation-duration:16s;animation-delay:1s}
.hearts-bg span:nth-child(4){left:42%;font-size:1rem;animation-duration:24s;animation-delay:5s}
.hearts-bg span:nth-child(5){left:55%;font-size:1.4rem;animation-duration:19s;animation-delay:2s}
.hearts-bg span:nth-child(6){left:68%;font-size:.8rem;animation-duration:21s;animation-delay:4s}
.hearts-bg span:nth-child(7){left:78%;font-size:1.6rem;animation-duration:17s;animation-delay:6s}
.hearts-bg span:nth-child(8){left:88%;font-size:1.1rem;animation-duration:23s;animation-delay:1.5s}
.hearts-bg span:nth-child(9){left:35%;font-size:2rem;animation-duration:25s;animation-delay:7s}
.hearts-bg span:nth-child(10){left:92%;font-size:1.3rem;animation-duration:20s;animation-delay:3.5s}
@keyframes floatHeart{
  0%{bottom:-40px;transform:rotate(0deg) scale(1);opacity:.06}
  25%{transform:rotate(15deg) scale(1.1);opacity:.08}
  50%{transform:rotate(-10deg) scale(.9);opacity:.05}
  75%{transform:rotate(20deg) scale(1.05);opacity:.07}
  100%{bottom:110vh;transform:rotate(-5deg) scale(1);opacity:0}
}

/* ===== HEADER ===== */
.header{background:rgba(255,255,255,.8);backdrop-filter:blur(16px);position:sticky;top:0;z-index:100;border-bottom:1px solid rgba(0,0,0,.04)}
.header-inner{max-width:1120px;margin:0 auto;padding:0 20px;display:flex;align-items:center;justify-content:space-between;height:56px}
.logo{display:flex;align-items:center;gap:10px}
.logo img{height:26px}
.logo-text{font-family:'Fraunces',serif;font-size:1.15rem;color:var(--dark);font-weight:800}
.logo-text span{color:var(--rose)}
.nav{display:flex;gap:4px}
.nav a{color:var(--text-light);font-size:.84rem;font-weight:600;padding:7px 14px;border-radius:8px}
.nav a:hover{color:var(--rose);background:var(--rose-soft)}
.burger{display:none;flex-direction:column;gap:4px;cursor:pointer;padding:8px}
.burger span{width:18px;height:2px;background:var(--dark);border-radius:2px;transition:.3s}
.burger.active span:nth-child(1){transform:rotate(45deg) translate(4px,4px)}
.burger.active span:nth-child(2){opacity:0}
.burger.active span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px)}

/* ===== HERO — FORM FIRST ===== */
.hero{position:relative;overflow:hidden;padding:0;min-height:calc(100vh - 56px);display:flex;align-items:center}
.hero-gradient{position:absolute;inset:0;background:
  linear-gradient(135deg,#fdf2f8 0%,#fce7f3 20%,#eff6ff 50%,#f0fdf4 80%,#fefce8 100%);z-index:0}
.hero-gradient::before{content:'';position:absolute;top:10%;right:5%;width:300px;height:300px;background:radial-gradient(circle,rgba(225,29,72,.06),transparent 70%);border-radius:50%}
.hero-gradient::after{content:'';position:absolute;bottom:10%;left:10%;width:250px;height:250px;background:radial-gradient(circle,rgba(59,130,246,.05),transparent 70%);border-radius:50%}
.hero-inner{max-width:1120px;margin:0 auto;padding:40px 20px;display:grid;grid-template-columns:1fr 420px;gap:48px;align-items:center;position:relative;z-index:1;width:100%}
.hero-left{position:relative}
.hero-pill{display:inline-flex;align-items:center;gap:8px;background:var(--card);border:1px solid var(--border);padding:6px 16px 6px 8px;border-radius:50px;font-size:.76rem;font-weight:600;color:var(--rose);margin-bottom:20px;box-shadow:var(--shadow)}
.hero-pill .dot{width:24px;height:24px;background:var(--rose-soft);border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:.7rem}
.hero h1{font-family:'Fraunces',serif;font-size:3rem;line-height:1.1;color:var(--dark);margin-bottom:16px}
.hero h1 .brand{display:block;font-size:3.6rem;background:linear-gradient(135deg,var(--rose),var(--purple),var(--blue-light));-webkit-background-clip:text;-webkit-text-fill-color:transparent;background-clip:text}
.hero h1 .sub{display:block;font-size:1.8rem;color:var(--text-mid);font-weight:700}
.hero-desc{color:var(--text-light);font-size:1rem;line-height:1.75;margin-bottom:24px;max-width:520px}
.hero-trust{display:flex;gap:20px;flex-wrap:wrap}
.hero-trust-item{display:flex;align-items:center;gap:6px;font-size:.84rem;font-weight:600;color:var(--text-mid)}
.hero-trust-item .ic{width:28px;height:28px;border-radius:8px;display:flex;align-items:center;justify-content:center;font-size:.8rem}
.hero-trust-item .ic.rose{background:var(--rose-soft);color:var(--rose)}
.hero-trust-item .ic.blue{background:var(--blue-soft);color:var(--blue-light)}
.hero-trust-item .ic.teal{background:var(--teal-soft);color:var(--teal)}
.hero-product-float{margin-top:24px}
.hero-product-float img{max-width:120px;filter:drop-shadow(0 10px 24px rgba(0,0,0,.12));animation:floatProduct 4s ease-in-out infinite}
@keyframes floatProduct{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}

/* ===== ORDER CARD (in hero) ===== */
.order-card{background:var(--card);border-radius:var(--r-lg);padding:32px 28px;box-shadow:var(--shadow-xl);border:1px solid rgba(0,0,0,.04);position:relative;overflow:hidden}
.order-card::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--rose),var(--purple),var(--blue-light))}
.order-card .badge-top{position:absolute;top:14px;right:14px;background:var(--rose);color:#fff;padding:4px 10px;border-radius:6px;font-size:.7rem;font-weight:700}
.order-card h3{font-family:'Fraunces',serif;font-size:1.15rem;text-align:center;margin-bottom:4px;color:var(--dark)}
.order-card .sub{text-align:center;font-size:.82rem;color:var(--text-light);margin-bottom:14px}
.price-row{display:flex;align-items:center;justify-content:center;gap:10px;margin-bottom:16px;padding:14px;background:linear-gradient(135deg,var(--rose-soft),var(--blue-soft));border-radius:var(--r-sm)}
.price-old{text-decoration:line-through;color:var(--muted);font-size:1rem}
.price-now{font-family:'Fraunces',serif;font-size:2.2rem;font-weight:800;color:var(--rose)}
.price-badge{background:var(--rose);color:#fff;padding:3px 10px;border-radius:20px;font-size:.72rem;font-weight:700}
.field{margin-bottom:10px;position:relative}
.field input{width:100%;padding:13px 16px 13px 42px;border:1.5px solid var(--border);border-radius:var(--r-sm);font-size:.9rem;font-family:inherit;background:var(--bg);transition:.2s}
.field input:focus{outline:none;border-color:var(--rose);box-shadow:0 0 0 3px var(--rose-glow)}
.field .ico{position:absolute;left:14px;top:50%;transform:translateY(-50%);width:16px;height:16px;opacity:.35}
.btn{display:inline-flex;align-items:center;justify-content:center;gap:8px;padding:13px 28px;border-radius:var(--r-sm);font-weight:700;font-size:.92rem;cursor:pointer;transition:.2s;border:none;font-family:inherit}
.btn-rose{background:linear-gradient(135deg,var(--rose),#be123c);color:#fff;box-shadow:0 4px 16px var(--rose-glow)}
.btn-rose:hover{transform:translateY(-1px);box-shadow:0 6px 24px rgba(225,29,72,.2);filter:brightness(1.05)}
.btn-blue{background:var(--blue-light);color:#fff}
.btn-blue:hover{background:var(--blue)}
.btn-outline{background:transparent;border:1.5px solid var(--border);color:var(--text)}
.btn-outline:hover{border-color:var(--rose);color:var(--rose)}
.btn-sm{padding:10px 20px;font-size:.84rem}
.btn-block{display:flex;width:100%}

.urgency{background:var(--bg);border:1px solid var(--border);border-radius:var(--r-sm);padding:16px;margin-top:14px;text-align:center}
.urgency .lbl{color:var(--rose);font-weight:700;font-size:.78rem;letter-spacing:.5px;margin-bottom:8px}
.timer{display:flex;justify-content:center;gap:6px;margin:10px 0}
.timer-block{background:var(--card);border:1px solid var(--border);border-radius:8px;padding:8px 10px;min-width:50px;text-align:center;box-shadow:var(--shadow-xs)}
.timer-num{font-family:'Fraunces',serif;font-size:1.3rem;font-weight:800;color:var(--dark);line-height:1}
.timer-label{font-size:.55rem;color:var(--muted);text-transform:uppercase;letter-spacing:.5px;margin-top:2px}
.live-counter{display:flex;align-items:center;justify-content:center;gap:6px;font-size:.78rem;color:var(--text-light);margin-top:6px}
.live-dot{width:6px;height:6px;background:var(--teal);border-radius:50%;animation:blink 1.5s infinite}
@keyframes blink{0%,100%{opacity:1}50%{opacity:.2}}
.stock-counter{font-size:.78rem;color:var(--text-light);text-align:center;margin-top:4px}
.stock-counter strong{color:var(--rose)}

/* ===== SECTIONS ===== */
.section{padding:72px 20px;position:relative;z-index:1}
.section-white{background:var(--card)}
.section-rose{background:var(--rose-soft)}
.section-blue{background:var(--blue-soft)}
.section-purple{background:var(--purple-soft)}
.container{max-width:1120px;margin:0 auto}
.tag{font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:2.5px;text-align:center;margin-bottom:8px}
.tag-rose{color:var(--rose)}
.tag-blue{color:var(--blue-light)}
.tag-teal{color:var(--teal)}
.tag-purple{color:var(--purple)}
.stitle{font-family:'Fraunces',serif;text-align:center;font-size:1.9rem;color:var(--dark);margin-bottom:10px;line-height:1.2}
.sdesc{text-align:center;color:var(--text-light);font-size:.92rem;margin-bottom:44px;max-width:520px;margin-left:auto;margin-right:auto}
.accent-line{width:48px;height:3px;margin:14px auto;border-radius:3px;background:linear-gradient(90deg,var(--rose),var(--purple))}

/* ===== FEATURES ===== */
.features{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.fcard{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:28px 22px;transition:.25s;position:relative;overflow:hidden}
.fcard::after{content:'';position:absolute;bottom:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--rose),var(--purple));opacity:0;transition:.25s}
.fcard:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
.fcard:hover::after{opacity:1}
.fcard-icon{width:48px;height:48px;margin-bottom:14px;border-radius:12px;display:flex;align-items:center;justify-content:center;font-size:1.3rem}
.fcard-icon.rose{background:var(--rose-soft)}
.fcard-icon.blue{background:var(--blue-soft)}
.fcard-icon.purple{background:var(--purple-soft)}
.fcard-icon.teal{background:var(--teal-soft)}
.fcard h3{font-size:.92rem;font-weight:700;margin-bottom:5px;color:var(--dark)}
.fcard p{font-size:.82rem;color:var(--text-light);line-height:1.55}

/* ===== IMAGE SECTION ===== */
.img-section{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:center}
.img-section img{border-radius:var(--r-lg);box-shadow:var(--shadow-lg);width:100%;aspect-ratio:4/3;object-fit:cover}
.img-section-text h2{font-family:'Fraunces',serif;font-size:1.6rem;color:var(--dark);margin-bottom:12px;line-height:1.25}
.img-section-text p{color:var(--text-light);margin-bottom:14px;line-height:1.7;font-size:.93rem}
.img-section-text .chip{display:inline-flex;align-items:center;gap:6px;padding:5px 14px;border-radius:50px;font-size:.76rem;font-weight:600;margin-bottom:14px}
.chip-rose{background:var(--rose-soft);color:var(--rose)}
.chip-teal{background:var(--teal-soft);color:var(--teal)}

/* ===== INGREDIENTS ===== */
.ingr-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.ingr-card{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:22px;text-align:center;transition:.2s}
.ingr-card:hover{box-shadow:var(--shadow-md);transform:translateY(-2px)}
.ingr-card img{width:56px;height:56px;margin:0 auto 10px;border-radius:14px;object-fit:contain}
.ingr-card h3{font-size:.88rem;font-weight:700;margin-bottom:4px;color:var(--dark)}
.ingr-card p{font-size:.78rem;color:var(--text-light);line-height:1.45}

/* ===== STATS ===== */
.stats-row{display:grid;grid-template-columns:repeat(3,1fr);gap:16px}
.stat{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:28px 16px;text-align:center}
.stat-val{font-family:'Fraunces',serif;font-size:2.6rem;font-weight:800;line-height:1}
.stat-val.rose{color:var(--rose)}
.stat-val.blue{color:var(--blue-light)}
.stat-val.purple{color:var(--purple)}
.stat-txt{font-size:.8rem;color:var(--text-light);margin-top:8px;line-height:1.4}
.stat-bar{width:70%;height:4px;background:var(--bg);border-radius:4px;margin:10px auto 0;overflow:hidden}
.stat-fill{height:100%;border-radius:4px;background:linear-gradient(90deg,var(--rose),var(--purple))}

/* ===== EXPERT ===== */
.expert{display:grid;grid-template-columns:auto 1fr;gap:24px;background:var(--card);border:1px solid var(--border);border-radius:var(--r-lg);padding:32px;align-items:start}
.expert img{width:100px;height:100px;border-radius:50%;object-fit:cover;border:3px solid var(--rose-soft)}
.expert h3{font-size:1.05rem;font-weight:700;margin-bottom:2px}
.expert .role{font-size:.78rem;color:var(--rose);font-weight:600;margin-bottom:12px}
.expert p{font-size:.88rem;color:var(--text-light);line-height:1.65;margin-bottom:6px}

/* ===== REVIEWS ===== */
.reviews-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px}
.rev{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:22px;transition:.2s}
.rev:hover{box-shadow:var(--shadow-md)}
.rev-top{display:flex;align-items:center;gap:10px;margin-bottom:10px}
.rev-av{width:38px;height:38px;border-radius:10px;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;color:#fff;flex-shrink:0}
.rev-av.a{background:linear-gradient(135deg,var(--rose),var(--rose-light))}
.rev-av.b{background:linear-gradient(135deg,var(--blue-light),var(--blue))}
.rev-av.c{background:linear-gradient(135deg,var(--teal),#14b8a6)}
.rev-av.d{background:linear-gradient(135deg,var(--purple),#a78bfa)}
.rev-name{font-weight:600;font-size:.88rem}
.rev-stars{color:#f59e0b;font-size:.78rem;letter-spacing:1px}
.rev-txt{font-size:.85rem;color:var(--text-light);line-height:1.6;margin-bottom:8px}
.rev-votes{display:flex;gap:12px;font-size:.76rem;color:var(--muted)}
.rev-vote{display:flex;align-items:center;gap:3px;cursor:pointer;padding:3px 6px;border-radius:4px}
.rev-vote:hover{background:var(--rose-soft);color:var(--rose)}

/* ===== STEPS ===== */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.step{text-align:center;padding:24px 14px;background:var(--card);border:1px solid var(--border);border-radius:var(--r);transition:.2s}
.step:hover{box-shadow:var(--shadow-md)}
.step img{width:44px;height:44px;margin:0 auto 10px}
.step-num{width:28px;height:28px;margin:0 auto 10px;border-radius:50%;background:linear-gradient(135deg,var(--rose),var(--purple));color:#fff;display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.75rem}
.step h3{font-size:.85rem;font-weight:700;margin-bottom:3px}
.step p{font-size:.76rem;color:var(--text-light);line-height:1.4}

/* ===== USAGE ===== */
.usage{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.usage-item{text-align:center;padding:24px 16px;background:var(--card);border:1px solid var(--border);border-radius:var(--r)}
.usage-item img{width:52px;height:52px;margin:0 auto 10px;object-fit:contain}
.usage-item h3{font-size:.88rem;font-weight:700;margin-bottom:4px}
.usage-item p{font-size:.8rem;color:var(--text-light)}
.tips{background:var(--card);border:1px solid var(--border);border-radius:var(--r);padding:22px;margin-top:20px}
.tips h4{font-size:.92rem;font-weight:700;margin-bottom:10px}
.tips li{padding:6px 0 6px 22px;position:relative;font-size:.84rem;color:var(--text-light);list-style:none;border-bottom:1px solid var(--border)}
.tips li:last-child{border:none}
.tips li::before{content:'♥';position:absolute;left:0;color:var(--rose-light);font-size:.65rem}

/* ===== SEO ===== */
.seo{max-width:760px;margin:0 auto}
.seo h2{font-family:'Fraunces',serif;color:var(--dark);margin:24px 0 12px;font-size:1.3rem}
.seo h3{color:var(--rose);margin:18px 0 8px;font-weight:600;font-size:1rem}
.seo p{margin-bottom:12px;color:var(--text-light);font-size:.92rem;line-height:1.75}
.seo a{color:var(--blue-light);font-weight:600;border-bottom:1px dashed rgba(59,130,246,.3)}
.seo a:hover{color:var(--rose)}

/* ===== FOOTER ===== */
.footer{background:var(--card);border-top:1px solid var(--border);padding:36px 20px 24px;text-align:center;position:relative;z-index:1}
.footer-brand{font-family:'Fraunces',serif;font-size:1rem;color:var(--dark);margin-bottom:12px}
.footer-brand span{color:var(--rose)}
.flinks{display:flex;flex-wrap:wrap;justify-content:center;gap:2px;margin-bottom:12px}
.flinks a{color:var(--muted);font-size:.76rem;padding:4px 8px;border-radius:6px}
.flinks a:hover{color:var(--rose);background:var(--rose-soft)}
.fcopy{font-size:.7rem;color:var(--muted)}

/* ===== POPUP ===== */
.popup-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.5);backdrop-filter:blur(4px);z-index:9999;align-items:center;justify-content:center}
.popup-overlay.active{display:flex}
.popup{background:var(--card);border-radius:var(--r-lg);max-width:400px;width:92%;padding:36px 28px;text-align:center;position:relative;animation:popUp .35s cubic-bezier(.34,1.56,.64,1)}
@keyframes popUp{from{transform:scale(.9) translateY(16px);opacity:0}to{transform:scale(1) translateY(0);opacity:1}}
.popup::before{content:'';position:absolute;top:0;left:0;right:0;height:4px;background:linear-gradient(90deg,var(--rose),var(--purple),var(--blue-light));border-radius:var(--r-lg) var(--r-lg) 0 0}
.popup-close{position:absolute;top:10px;right:10px;cursor:pointer;color:var(--muted);background:var(--bg);border:none;width:28px;height:28px;border-radius:7px;font-size:1rem}
.popup-close:hover{background:var(--rose-soft);color:var(--rose)}
.popup-discount{font-family:'Fraunces',serif;font-size:3rem;font-weight:800;color:var(--rose);line-height:1}
.popup-discount small{font-size:.82rem;display:block;color:var(--dark);font-weight:600;margin-top:4px;font-family:'Plus Jakarta Sans',sans-serif;letter-spacing:1px}
.popup h2{font-family:'Fraunces',serif;margin:10px 0 6px;font-size:1.15rem}
.popup p{color:var(--text-light);margin-bottom:14px;font-size:.86rem}
.popup-timer{font-family:'Fraunces',serif;font-size:1.2rem;font-weight:700;color:var(--rose);margin-bottom:16px}

/* ===== STICKY ===== */
.sticky-bar{position:fixed;bottom:0;left:0;width:100%;background:rgba(255,255,255,.88);backdrop-filter:blur(12px);border-top:1px solid var(--border);padding:10px 20px;z-index:99;display:flex;align-items:center;justify-content:center;gap:14px;transform:translateY(100%);transition:.3s;box-shadow:0 -2px 10px rgba(0,0,0,.04)}
.sticky-bar.visible{transform:translateY(0)}
.sticky-bar .price-old{color:var(--muted);font-size:.82rem;text-decoration:line-through}
.sticky-bar .price-now{color:var(--rose);font-size:1.2rem;font-weight:800;font-family:'Fraunces',serif}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
  .hero-inner{grid-template-columns:1fr;text-align:center;padding:28px 16px}
  .hero h1{font-size:2rem}
  .hero h1 .brand{font-size:2.4rem}
  .hero h1 .sub{font-size:1.3rem}
  .hero-desc{margin:0 auto 20px}
  .hero-trust{justify-content:center}
  .hero-product-float{display:none}
  .features,.ingr-grid,.stats-row,.steps{grid-template-columns:1fr}
  .img-section{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .usage{grid-template-columns:1fr}
  .expert{grid-template-columns:1fr;text-align:center;justify-items:center}
  .nav{display:none;position:fixed;top:56px;left:0;right:0;background:var(--card);flex-direction:column;padding:12px;border-bottom:1px solid var(--border);box-shadow:var(--shadow-md);z-index:200}
  .nav.active{display:flex}
  .burger{display:flex}
  .section{padding:48px 16px}
  .stitle{font-size:1.4rem}
  .sticky-bar .btn{flex:1}
  .order-card{border-radius:var(--r)}
}
@media(max-width:480px){
  .hero h1{font-size:1.6rem}
  .hero h1 .brand{font-size:2rem}
  .steps{grid-template-columns:1fr 1fr}
  .ingr-grid{grid-template-columns:1fr 1fr}
  .popup{padding:24px 18px;border-radius:var(--r)}
}
