:root{
  --bg:#fff1f6;
  --bg2:#fff7fb;
  --card:#ffffff;
  --surface:#fff7fb;
  --text:#0f172a;
  --muted:#475569;
  --border:#f1d5df;
  --primary:#2f79c6;
  --primaryDark:#2467ab;
  --secondary:#111827;
  --accent:#ff4f8a;
  --shadow:0 10px 25px rgba(15,23,42,.08);
  --radius:14px;
  --radiusSm:10px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 15% 0%, rgba(255,79,138,.10), transparent 55%),
    radial-gradient(900px 600px at 95% 10%, rgba(108,92,231,.08), transparent 52%),
    linear-gradient(180deg, var(--bg2), var(--bg));
  line-height:1.5;
}
a{color:var(--primary);text-decoration:none}
a:hover{text-decoration:underline}
img{max-width:100%;display:block}

.container{
  width:min(1120px, calc(100% - 32px));
  margin:0 auto;
}

.skip-link{
  position:absolute;
  left:-9999px;
  top:auto;
  width:1px;height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:16px;top:16px;
  width:auto;height:auto;
  padding:10px 12px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:10px;
  z-index:50;
}

.floating-home{
  position:fixed;
  left:16px;
  bottom:16px;
  z-index:80;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(241,213,223,.9);
  background:rgba(255,255,255,.82);
  box-shadow:0 16px 34px rgba(15,23,42,.12);
  backdrop-filter:saturate(140%) blur(6px);
  color:inherit;
  text-decoration:none;
}
.floating-home:hover{text-decoration:none}
.floating-home__mark{
  width:32px;height:32px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  background:linear-gradient(135deg, rgba(255,79,138,1), rgba(108,92,231,1));
}
.floating-home__text{
  font-weight:800;
  letter-spacing:-.01em;
}
.floating-home__text span{color:var(--accent)}

.advertorial-bar{
  background:#0b1220;
  color:#e5e7eb;
  font-size:13px;
}
.advertorial-bar__inner{
  display:flex;
  gap:12px;
  align-items:center;
  padding:10px 0;
  justify-content:space-between;
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:4px 10px;
  border-radius:999px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  font-weight:600;
}
.advertorial-bar__note{opacity:.9}

.site-header{
  background:var(--card);
  border-bottom:1px solid var(--border);
  position:sticky;
  top:0;
  z-index:20;
}
.site-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex;
  gap:10px;
  align-items:center;
  color:inherit;
  text-decoration:none;
}
.brand:hover{text-decoration:none}
.brand__mark{
  width:34px;height:34px;
  border-radius:10px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg, rgba(255,79,138,1), rgba(108,92,231,1));
  font-weight:900;
  letter-spacing:.2px;
  box-shadow:0 10px 22px rgba(255,79,138,.22);
}
.brand__text{font-size:16px;letter-spacing:-.01em}
.brand__text--accent{color:var(--accent);font-weight:800}
.site-header__nav{display:flex;gap:10px;align-items:center}

.btn{
  border:1px solid transparent;
  border-radius:12px;
  padding:12px 14px;
  font-weight:700;
  cursor:pointer;
  font-size:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  transition:transform .05s ease, background .15s ease, border-color .15s ease;
  user-select:none;
}
.btn:active{transform:translateY(1px)}
.btn--primary{
  background:var(--primary);
  color:#fff;
}
.btn--primary:hover{background:var(--primaryDark);text-decoration:none}
.btn--secondary{
  background:#111827;
  color:#fff;
}
.btn--secondary:hover{background:#0b1220;text-decoration:none}
.btn--ghost{
  background:var(--surface);
  border-color:var(--border);
  color:var(--secondary);
}
.btn--ghost:hover{background:#eef2f7;text-decoration:none}
.btn--full{width:100%}
.btn[data-pulse="true"], a.btn[data-pulse="true"]{
  box-shadow:0 0 0 6px rgba(255,79,138,.22), 0 12px 28px rgba(15,23,42,.12);
  transform:translateY(-1px);
}

.hero{
  padding:26px 0 10px;
}
.hero--bg{
  position:relative;
  padding:56px 0 46px;
  background:
    radial-gradient(900px 500px at 20% 0%, rgba(255,79,138,.14), transparent 60%),
    radial-gradient(900px 520px at 90% 5%, rgba(108,92,231,.12), transparent 58%),
    linear-gradient(180deg, rgba(255,247,251,.85), rgba(255,241,246,.65)),
    url("./images/6.png");
  background-size:cover;
  background-position:center;
  border-bottom:1px solid var(--border);
  overflow:hidden;
}
.hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,241,246,.55));
  pointer-events:none;
}
.hero__center{
  position:relative;
  display:grid;
  place-items:center;
  min-height:420px;
}
.hero__center > *{max-width:820px}
.hero-preview{
  background:rgba(255,255,255,.78);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:var(--shadow);
  backdrop-filter:saturate(140%) blur(4px);
}
.hero-preview--center{
  text-align:left;
}
.hero-preview__meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.hero-preview__divider{
  height:1px;
  background:linear-gradient(90deg, rgba(255,79,138,.30), rgba(47,121,198,.18), transparent);
  margin:12px 0;
}
.kicker{
  display:inline-flex;
  padding:6px 10px;
  border:1px solid var(--border);
  border-radius:999px;
  background:var(--card);
  color:var(--muted);
  font-weight:600;
  font-size:13px;
}
.hero__title{
  margin:10px 0 8px;
  font-size:34px;
  line-height:1.15;
  letter-spacing:-.02em;
}
.hero__subtitle{
  margin:0 0 14px;
  color:var(--muted);
  font-size:16px;
}
.checks{
  margin:0;
  padding:0;
  list-style:none;
  display:grid;
  gap:10px;
}
.checks li{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:12px;
  padding:10px 12px;
  position:relative;
  padding-left:40px;
}
.checks li:before{
  content:"✓";
  position:absolute;
  left:12px;
  top:10px;
  width:20px;height:20px;
  border-radius:6px;
  display:grid;
  place-items:center;
  background:rgba(47,121,198,.12);
  color:var(--primary);
  font-weight:900;
}
.hero__cta{display:flex;gap:10px;flex-wrap:wrap;margin:16px 0 0}
.micro{font-size:12.5px;color:var(--muted)}

.product-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px;
}
.product-card__top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:12px;
}
.stars span:first-child{color:#f59e0b;font-weight:900;letter-spacing:2px}
.price{display:flex;flex-direction:column;align-items:flex-end}
.price__now{
  color:var(--primary);
  font-weight:900;
  font-size:22px;
}
.price__tax{font-size:12px;color:var(--muted)}
.product-card__media{
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  padding:14px;
  display:grid;
  place-items:center;
}

.qty-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin:14px 0 10px;
}
.qty-row__label{font-weight:700;color:var(--secondary)}
.qty{display:flex;align-items:center;gap:8px}
.qty__btn{
  width:36px;height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  background:#f8fafc;
  cursor:pointer;
  font-weight:900;
}
.qty__input{
  width:44px;
  height:36px;
  border-radius:10px;
  border:1px solid var(--border);
  text-align:center;
  font-weight:800;
  background:#fff;
}
.availability{
  display:flex;
  align-items:center;
  gap:10px;
  margin-top:12px;
}
.dot{
  width:10px;height:10px;
  border-radius:999px;
  background:#22c55e;
  box-shadow:0 0 0 6px rgba(34,197,94,.15);
}
.delivery{
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  background:var(--surface);
  border:1px solid var(--border);
}

.section{
  padding:34px 0;
}
.section--alt{
  background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,241,246,.55));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
.section__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:20px;
  align-items:start;
}
.section__content h2,.container h2{margin:0 0 10px;font-size:26px;letter-spacing:-.01em}
.section__content p{margin:0 0 10px;color:var(--muted)}
.section-lead{
  font-size:15.5px;
  color:var(--muted);
}

.steps{
  display:grid;
  gap:10px;
  margin:14px 0 12px;
}
.step{
  display:grid;
  grid-template-columns: 34px 1fr;
  gap:10px;
  align-items:start;
  padding:12px;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 4px 12px rgba(15,23,42,.05);
}
.step__num{
  width:34px;height:34px;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:900;
  color:var(--primaryDark);
  background:rgba(47,121,198,.14);
  border:1px solid rgba(47,121,198,.22);
}
.step__body h3{
  margin:0 0 4px;
  font-size:16px;
}
.step__body p{margin:0}

.highlight{
  margin:10px 0 12px;
  padding:12px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(47,121,198,.22);
  background:linear-gradient(180deg, rgba(47,121,198,.10), rgba(255,255,255,.7));
  color:#0b2c4a;
}

.callout--soft{
  background:var(--surface);
}
.callout{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:0 4px 12px rgba(15,23,42,.05);
}
.callout h3{margin:0 0 8px;font-size:16px}
.bullets{margin:0;padding-left:18px;color:var(--muted)}
.section__media img{
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.section__media figcaption{margin-top:8px}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}
.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 6px 18px rgba(15,23,42,.06);
}
.card img{height:150px;object-fit:cover;width:100%}
.card__body{padding:12px}
.card__body h3{margin:0 0 6px;font-size:16px}
.card__body p{margin:0;color:var(--muted)}

.info-bar{
  margin-top:16px;
  background:rgba(47,121,198,.10);
  border:1px solid rgba(47,121,198,.22);
  padding:12px 14px;
  border-radius:var(--radius);
  color:#0b2c4a;
}

.section-head{display:flex;flex-direction:column;gap:8px;margin-bottom:14px}
.ingredient-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
.ingredient{
  width:min(780px, 100%);
  justify-self:start;
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:0 6px 18px rgba(15,23,42,.06);
  display:grid;
  grid-template-columns: 160px 1fr;
  min-height:160px;
}
.ingredient:nth-child(even){
  justify-self:end;
}
.ingredient__media img{width:100%;height:100%;object-fit:cover}
.ingredient__body{padding:12px}
.ingredient__body h3{margin:0 0 6px;font-size:16px}
.ingredient__body p{margin:0;color:var(--muted)}

.lead{padding:8px 0}
.lead__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:start;
}
.trust{
  margin-top:14px;
  display:grid;
  gap:10px;
}
.trust__item{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:12px;
  display:flex;
  gap:10px;
  align-items:flex-start;
}
.trust__icon{font-size:18px;line-height:1}

.form{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:14px;
  box-shadow:var(--shadow);
}
.form__row{display:grid;gap:6px;margin-bottom:12px}
.label{font-size:13px;font-weight:700}
.input{
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  font-size:14px;
  outline:none;
}
.input:focus{
  border-color:rgba(47,121,198,.65);
  box-shadow:0 0 0 4px rgba(47,121,198,.14);
}
.textarea{resize:vertical}
.check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size:13px;
  color:var(--muted);
  margin:10px 0 6px;
}
.check input{margin-top:3px}
.error{
  min-height:16px;
  font-size:12px;
  color:#b91c1c;
}
.form__fineprint{margin:10px 0 0}

.footer{
  background:#0b1220;
  color:#e5e7eb;
  padding:26px 0 18px;
}
.footer a{color:#cfe6ff}
.footer__grid{
  display:grid;
  grid-template-columns: 1fr .6fr 1.4fr;
  gap:18px;
  align-items:start;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom:10px;
}
.footer__links{list-style:none;margin:8px 0 0;padding:0;display:grid;gap:8px}
.footer__disclosures p{margin:8px 0 0;opacity:.95}
.footer__bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  opacity:.9;
}

.modal{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  z-index:60;
}
.modal.is-open{display:grid}
.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.modal__card{
  position:relative;
  width:min(520px, calc(100% - 32px));
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--border);
  box-shadow:0 30px 70px rgba(0,0,0,.35);
  padding:18px;
}
.modal__card h2{margin:0 0 8px}
.modal__card p{margin:0 0 14px;color:var(--muted)}

@media (max-width: 980px){
  .section__grid{grid-template-columns:1fr}
  .cards{grid-template-columns:1fr}
  .ingredient-grid{grid-template-columns:1fr}
  .ingredient{grid-template-columns:1fr}
  .ingredient__media img{height:180px}
  .lead__grid{grid-template-columns:1fr}
  .footer__grid{grid-template-columns:1fr}
  .hero__title{font-size:30px}
  .hero__center{min-height:unset}
  .hero--bg{padding:34px 0 28px}
}

@media (max-width: 980px){
  .ingredient{
    width:100%;
    justify-self:stretch;
  }
}

