:root {
  --pink: #e41675;
  --pink-dark: #bc0c5a;
  --pink-light: #ffe6f0;
  --ink: #252326;
  --muted: #6f6a70;
  --cream: #f8f6f3;
  --white: #fff;
  --green: #25d366;
  --border: rgba(37, 35, 38, 0.13);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; }

.nav {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: min(1180px, calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 7px;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 1.25rem;
}
.brand-go { font-family: "Playfair Display", serif; font-style: italic; font-weight: 600; }
.brand-o { color: var(--pink); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 35, 38, .13); }
.button-small { min-height: 44px; padding: 0 19px; color: white; background: var(--ink); font-size: .9rem; }
.button-small { gap: 10px; }
.cart-icon { width: 16px; height: 14px; display: grid; place-items: center; border: 1.5px solid currentColor; border-radius: 3px; font-size: 0; }
.cart-count { min-width: 21px; height: 21px; display: grid; place-items: center; padding: 0 5px; color: var(--ink); border-radius: 99px; background: white; font-size: .68rem; }
.button-primary { color: white; background: var(--pink); }
.button-dark { color: white; background: var(--ink); }
.button-white { color: var(--pink-dark); background: white; }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 60px;
  max-width: 1280px;
  margin: auto;
  padding: 125px 50px 70px;
  overflow: hidden;
}
.hero-copy { max-width: 640px; }
.eyebrow {
  margin: 0 0 24px;
  color: var(--pink);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
}
h1, h2 {
  margin: 0;
  font-size: clamp(3.5rem, 6vw, 6rem);
  line-height: .95;
  letter-spacing: -.055em;
}
h1 em, h2 em {
  color: var(--pink);
  font-family: "Playfair Display", serif;
  font-weight: 600;
}
.hero-lead {
  max-width: 570px;
  margin: 32px 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.75;
}
.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.text-link { font-weight: 700; font-size: .92rem; border-bottom: 1px solid var(--ink); padding: 5px 0; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 42px; color: var(--muted); font-size: .78rem; }
.trust-row span { display: flex; align-items: center; gap: 7px; }
.trust-row span::before { content: "✓"; color: var(--pink); font-weight: 800; }

.hero-visual { position: relative; display: grid; place-items: center; min-height: 580px; }
.pink-orbit {
  position: absolute;
  width: 530px;
  height: 530px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--pink), #f07bb0);
  box-shadow: 0 35px 80px rgba(228, 22, 117, .26);
}
.pink-orbit::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: inherit;
}
.product-card {
  position: relative;
  width: 330px;
  height: 465px;
  overflow: hidden;
  border-radius: 6px;
  background: white;
  box-shadow: 0 35px 80px rgba(61, 16, 37, .3);
  transform: rotate(2deg);
}
.product-card img { width: 100%; height: 100%; object-fit: cover; object-position: center 36%; }
.floating-note {
  position: absolute;
  right: -10px;
  bottom: 55px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 19px;
  border-radius: 4px;
  background: white;
  box-shadow: 0 15px 35px rgba(0,0,0,.14);
  font-size: .74rem;
  font-weight: 600;
  line-height: 1.25;
}
.note-number { color: var(--pink); font-size: 1.6rem; font-weight: 700; }

.marquee { overflow: hidden; color: white; background: var(--ink); padding: 19px 0; }
.marquee div {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 32px;
  animation: marquee 28s linear infinite;
  font-size: .86rem;
  font-weight: 700;
  letter-spacing: .16em;
}
.marquee i { color: var(--pink); font-style: normal; }
@keyframes marquee { to { transform: translateX(-50%); } }

.lead-magnet {
  position: relative;
  max-width: 1280px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 90px;
  margin-top: 70px;
  padding: 90px 80px;
  overflow: hidden;
  border: 1px solid rgba(228, 22, 117, .13);
  background:
    radial-gradient(circle at 98% 5%, rgba(228, 22, 117, .11), transparent 31%),
    linear-gradient(145deg, #fff 0%, #fff8fb 100%);
}
.lead-magnet::before {
  content: "";
  position: absolute;
  right: -150px;
  bottom: -190px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(228, 22, 117, .1);
  border-radius: 50%;
}
.lead-book {
  position: relative;
  z-index: 1;
  width: min(100%, 365px);
  margin: auto;
  perspective: 1100px;
}
.lead-book img {
  position: relative;
  z-index: 2;
  width: 100%;
  border: 1px solid rgba(37, 35, 38, .08);
  border-radius: 3px 9px 9px 3px;
  box-shadow: 24px 32px 55px rgba(78, 31, 53, .2);
  transform: rotateY(-6deg) rotateZ(-1.5deg);
}
.lead-book-shadow {
  position: absolute;
  z-index: 0;
  right: -28px;
  bottom: -25px;
  width: 86%;
  height: 88%;
  border-radius: 10px;
  background: rgba(228, 22, 117, .13);
  transform: rotate(4deg);
}
.lead-book-badge {
  position: absolute;
  z-index: 3;
  top: -20px;
  right: -28px;
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  color: white;
  border: 6px solid white;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 14px 32px rgba(228, 22, 117, .24);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  transform: rotate(8deg);
}

.lead-library {
  position: relative;
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: end;
  gap: 12px;
  margin: auto;
  padding: 46px 8px 8px;
}
.lead-cover {
  position: static;
  width: 100%;
  height: auto;
  aspect-ratio: 1240 / 1754;
  object-fit: contain;
  border: 5px solid white;
  box-shadow: 0 20px 42px rgba(37,35,38,.16);
}
.lead-cover-two { transform: translateY(-18px); }
.lead-library .lead-book-badge { z-index: 5; right: -8px; top: -8px; line-height: 1.05; text-align: center; }
.lead-library-link { display: inline-flex; margin-top: 22px; color: var(--pink); font-size: .82rem; font-weight: 700; }
.lead-copy {
  position: relative;
  z-index: 2;
}
.lead-copy h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}
.lead-intro {
  max-width: 650px;
  margin: 28px 0 20px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}
.lead-intro strong { color: var(--ink); }
.lead-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  color: var(--ink);
  font-size: .79rem;
  font-weight: 600;
}
.lead-highlights li { display: flex; align-items: center; gap: 7px; }
.lead-highlights span {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: var(--pink);
  font-size: .62rem;
}
.lead-form {
  max-width: 660px;
  padding: 25px;
  border: 1px solid rgba(37, 35, 38, .1);
  background: white;
  box-shadow: 0 18px 45px rgba(65, 29, 45, .08);
}
.lead-fields {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 12px;
}
.lead-fields label {
  display: grid;
  align-content: start;
  gap: 8px;
}
.lead-fields label > span {
  font-size: .72rem;
  font-weight: 700;
}
.lead-fields label > span small { color: var(--muted); font-weight: 500; }
.lead-fields input {
  min-width: 0;
  height: 52px;
  padding: 0 14px;
  color: var(--ink);
  border: 1px solid var(--border);
  border-radius: 3px;
  outline: none;
  background: #fcfbfb;
  font: inherit;
  font-size: .88rem;
  transition: border-color .2s, box-shadow .2s;
}
.lead-fields input:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(228, 22, 117, .1);
}
.phone-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  height: 52px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 3px;
  background: #fcfbfb;
  transition: border-color .2s, box-shadow .2s;
}
.phone-field:focus-within {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(228, 22, 117, .1);
}
.phone-prefix {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 12px;
  border-right: 1px solid var(--border);
  background: #f6f3f4;
  font-size: .78rem;
  font-weight: 700;
  white-space: nowrap;
}
.phone-field input {
  width: 100%;
  height: 50px;
  border: 0;
  box-shadow: none !important;
  background: transparent;
}
.lead-phone > small {
  color: var(--muted);
  font-size: .64rem;
  line-height: 1.35;
}
.lead-consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  gap: 10px;
  align-items: start;
  margin: 17px 0;
  color: var(--muted);
  cursor: pointer;
  font-size: .68rem;
  line-height: 1.5;
}
.lead-consent input {
  width: 17px;
  height: 17px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}
.lead-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.button-lead {
  width: 100%;
  color: white;
  background: var(--pink);
}
.lead-button-loading { display: none; }
.lead-form.is-loading .lead-button-label { display: none; }
.lead-form.is-loading .lead-button-loading { display: inline; }
.lead-form.is-loading .button-lead { cursor: wait; opacity: .8; }
.lead-privacy {
  margin: 10px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: .61rem;
  line-height: 1.4;
}
.lead-form-status {
  min-height: 0;
  margin: 0;
  color: #b20f49;
  font-size: .72rem;
  font-weight: 600;
  line-height: 1.45;
}
.lead-form-status:not(:empty) { margin-top: 12px; }
.lead-success {
  max-width: 660px;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: center;
  padding: 22px;
  color: #235a40;
  border: 1px solid rgba(35, 90, 64, .2);
  background: #f0faf5;
}
.lead-success:not([hidden]) { display: grid; }
.lead-success-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: #2c8b60;
  font-weight: 800;
}
.lead-success strong { font-size: 1rem; }
.lead-success p {
  margin: 4px 0 0;
  color: #507261;
  font-size: .78rem;
  line-height: 1.45;
}

.section { max-width: 1180px; margin: auto; padding: 120px 24px; }
.section-heading { display: grid; grid-template-columns: 1.2fr .8fr; column-gap: 70px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .story h2, .ingredients h2, .offer h2, .faq h2, .closing h2 {
  font-size: clamp(2.9rem, 5vw, 5rem);
}
.section-heading > p:last-child { margin: 0 0 5px; color: var(--muted); line-height: 1.75; }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 68px; }
.benefit-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--border);
  background: white;
  transition: transform .3s ease, box-shadow .3s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(45, 31, 38, .12); }
.benefit-card-featured { border-color: var(--pink); }
.benefit-photo { position: relative; height: 265px; overflow: hidden; background: #e9e3e5; }
.benefit-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 15, 18, .08), transparent 44%, rgba(20, 15, 18, .22));
}
.benefit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  transition: transform .55s ease;
}
.benefit-card:nth-child(2) .benefit-photo img { object-position: center 42%; }
.benefit-card:nth-child(3) .benefit-photo img { object-position: center 37%; }
.benefit-card:hover .benefit-photo img { transform: scale(1.035); }
.benefit-index {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  min-width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  font-size: .68rem;
  font-weight: 700;
}
.icon-wrap {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  box-shadow: 0 8px 20px rgba(0,0,0,.12);
  font-family: "Playfair Display";
  font-size: 1.7rem;
}
.benefit-content { min-height: 178px; padding: 28px 30px 30px; }
.benefit-card-featured .benefit-content { color: white; background: var(--pink); }
.benefit-card h3 { margin: 0 0 10px; font-size: 1.35rem; }
.benefit-card p { margin: 0; color: var(--muted); line-height: 1.6; font-size: .92rem; }
.benefit-card-featured p { color: rgba(255,255,255,.78); }

.story { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; align-items: center; max-width: 1280px; }
.story-image { position: relative; min-height: 650px; overflow: hidden; background: #eee; }
.story-image img { width: 100%; height: 100%; position: absolute; object-fit: cover; object-position: 52% 18%; }
.story-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 125px;
  height: 125px;
  display: grid;
  place-items: center;
  text-align: center;
  color: white;
  border-radius: 50%;
  background: var(--pink);
  font-family: "Playfair Display", serif;
  font-style: italic;
  line-height: 1.1;
  transform: rotate(-8deg);
}
.story-intro { margin: 30px 0; color: var(--muted); line-height: 1.75; }
.check-list { display: grid; gap: 0; list-style: none; margin: 0 0 34px; padding: 0; }
.check-list li { display: flex; gap: 17px; padding: 16px 0; border-top: 1px solid var(--border); }
.check-list li > span { display: grid; place-items: center; width: 28px; height: 28px; color: white; border-radius: 50%; background: var(--pink); font-size: .8rem; }
.check-list div { display: grid; gap: 3px; }
.check-list small { color: var(--muted); }

.couple-teaser {
  position: relative;
  max-width: 1280px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 85px;
  margin-top: 25px;
  padding: 85px 70px;
  overflow: hidden;
  color: white;
  background:
    radial-gradient(circle at 5% 15%, rgba(228,22,117,.24), transparent 34%),
    linear-gradient(135deg, #171619, #29272b);
}
.couple-teaser::after {
  content: "";
  position: absolute;
  top: -140px;
  right: -120px;
  width: 370px;
  height: 370px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
}
.couple-image { position: relative; min-height: 510px; }
.couple-product {
  position: absolute;
  overflow: hidden;
  background: white;
  box-shadow: 0 30px 70px rgba(0,0,0,.4);
}
.couple-product img { width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.couple-product-woman { z-index: 2; left: 8%; bottom: 0; width: 245px; height: 370px; transform: rotate(-4deg); }
.couple-product-men { right: 5%; top: 0; width: 230px; height: 350px; transform: rotate(5deg); }
.couple-plus {
  position: absolute;
  z-index: 3;
  right: 12%;
  bottom: 11%;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: white;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  font-size: 2rem;
}
.couple-copy { position: relative; z-index: 2; }
.eyebrow-couple { color: #f585b8; }
.couple-label { display: inline-block; margin-bottom: 14px; color: #f585b8; font-family: "Playfair Display", serif; font-size: 1.35rem; font-style: italic; }
.couple-copy h2 { margin: 0; font-size: clamp(3rem, 5vw, 5rem); line-height: .98; letter-spacing: -.055em; }
.couple-copy h2 em { color: #f585b8; font-family: "Playfair Display", serif; font-weight: 600; }
.couple-copy > p { max-width: 560px; margin: 27px 0; color: rgba(255,255,255,.7); line-height: 1.75; }
.couple-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.couple-facts span { padding: 9px 13px; border: 1px solid rgba(255,255,255,.18); border-radius: 99px; color: rgba(255,255,255,.8); font-size: .72rem; }
.couple-actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.button-couple { color: var(--ink); background: white; }
.couple-actions small { color: rgba(255,255,255,.55); }

.ingredients { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; padding-top: 80px; }
.ingredient-list { display: flex; align-content: center; flex-wrap: wrap; gap: 12px; }
.ingredient-list span {
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: white;
  font-size: .9rem;
  transition: color .2s, background .2s, border .2s;
}
.ingredient-list span:hover { color: white; border-color: var(--pink); background: var(--pink); }

.offer {
  max-width: 1280px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  padding: 0;
  color: white;
  background: var(--pink);
}
.offer-copy { padding: 85px 70px; }
.eyebrow-light { color: rgba(255,255,255,.72); }
.offer h2 em { color: white; }
.price { display: grid; margin: 40px 0 4px; }
.old-price { text-decoration: line-through; opacity: .65; }
.new-price { font-size: clamp(3rem, 6vw, 5.3rem); font-weight: 700; letter-spacing: -.06em; }
.new-price small { font-size: 1rem; letter-spacing: 0; }
.offer-note { margin: 0 0 32px; opacity: .8; }
.offer-steps { padding: 85px 60px; background: var(--pink-dark); }
.offer-steps > p { margin: 0 0 30px; font-size: 1.1rem; font-weight: 700; }
.offer-steps ol { list-style: none; margin: 0; padding: 0; }
.offer-steps li { display: flex; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.2); }
.offer-steps li > span { display: grid; place-items: center; flex: 0 0 36px; height: 36px; border: 1px solid rgba(255,255,255,.55); border-radius: 50%; }
.offer-steps li div { display: grid; gap: 4px; }
.offer-steps small { opacity: .7; line-height: 1.5; }

.faq { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; }
.accordion details { border-top: 1px solid var(--border); }
.accordion details:last-child { border-bottom: 1px solid var(--border); }
.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 25px 0;
  cursor: pointer;
  list-style: none;
  font-size: 1.05rem;
  font-weight: 700;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { color: var(--pink); font-size: 1.5rem; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -5px 50px 25px 0; color: var(--muted); line-height: 1.7; }

.closing { padding: 115px 24px; text-align: center; background: white; }
.closing h2 { margin-bottom: 38px; }
.closing .button { min-width: 315px; }

footer {
  display: grid;
  grid-template-columns: .6fr 1.4fr .6fr;
  align-items: center;
  gap: 40px;
  padding: 38px max(24px, calc((100vw - 1180px) / 2));
  color: #aaa;
  background: var(--ink);
  font-size: .7rem;
}
footer p { max-width: 500px; margin: 0; line-height: 1.5; text-align: center; }
footer > span { text-align: right; }
.footer-brand { color: white; }

.cart-overlay {
  position: fixed;
  z-index: 70;
  inset: 0;
  visibility: hidden;
  opacity: 0;
  background: rgba(20,18,21,.48);
  backdrop-filter: blur(3px);
  transition: opacity .25s, visibility .25s;
}
.cart-drawer {
  position: fixed;
  z-index: 71;
  top: 0;
  right: 0;
  width: min(500px, 100%);
  height: 100dvh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  transform: translateX(102%);
  background: var(--cream);
  box-shadow: -25px 0 70px rgba(0,0,0,.2);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}
body.cart-open { overflow: hidden; }
body.cart-open .cart-overlay { visibility: visible; opacity: 1; }
body.cart-open .cart-drawer { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; padding: 26px 28px; border-bottom: 1px solid var(--border); background: white; }
.cart-header p { margin: 0 0 4px; color: var(--pink); font-size: .65rem; font-weight: 700; letter-spacing: .16em; }
.cart-header h2 { margin: 0; font-size: 2rem; letter-spacing: -.04em; }
.cart-close { width: 42px; height: 42px; border: 1px solid var(--border); border-radius: 50%; background: transparent; cursor: pointer; font-size: 1.55rem; }
.cart-body { overflow-y: auto; padding: 22px 24px; }
.cart-line { display: grid; grid-template-columns: 76px 1fr auto; align-items: center; gap: 15px; padding: 15px; border: 1px solid var(--border); background: white; }
.cart-line img { width: 76px; height: 82px; object-fit: cover; object-position: center 38%; }
.cart-line div { display: grid; gap: 4px; }
.cart-line strong { font-size: .95rem; }
.cart-line small { color: var(--muted); font-size: .72rem; }
.cart-line > span { font-weight: 700; }
.cart-line-men { margin-top: 12px; }
.cart-cross-sell { margin: 28px 0 20px; padding: 20px; border: 1px solid rgba(228,22,117,.24); background: var(--pink-light); }
.cross-sell-title { display: grid; gap: 5px; margin-bottom: 16px; }
.cross-sell-title span { color: var(--pink); font-size: .61rem; font-weight: 700; letter-spacing: .13em; }
.cross-sell-title strong { font-size: 1.08rem; }
.cross-sell-card { display: grid; grid-template-columns: 120px 1fr; gap: 16px; align-items: stretch; }
.cross-sell-card > img { width: 120px; height: 175px; object-fit: cover; object-position: center 35%; background: white; }
.cross-sell-copy { display: flex; flex-direction: column; min-width: 0; }
.cross-sell-name { display: flex; justify-content: space-between; gap: 10px; }
.cross-sell-name strong { font-size: 1rem; }
.cross-sell-name span { color: var(--pink); font-weight: 700; }
.cross-sell-copy p { margin: 9px 0 5px; color: var(--muted); font-size: .76rem; line-height: 1.5; }
.cross-sell-copy > small { color: var(--muted); font-size: .67rem; }
.cross-sell-add { width: 100%; min-height: 40px; margin-top: auto; color: white; border: 0; border-radius: 4px; background: var(--ink); cursor: pointer; font-size: .72rem; font-weight: 700; }
.remove-label { display: none; }
.cart-drawer.has-men .cross-sell-add { color: var(--ink); border: 1px solid var(--ink); background: transparent; }
.cart-drawer.has-men .add-label { display: none; }
.cart-drawer.has-men .remove-label { display: inline; }
.cart-footer { padding: 20px 26px 25px; border-top: 1px solid var(--border); background: white; }
.bundle-saving { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 14px; padding: 10px 12px; color: #6a143b; background: var(--pink-light); font-size: .68rem; }
.bundle-saving strong { text-align: right; }
.cart-total { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 16px; }
.cart-total > span { color: var(--muted); }
.cart-total strong { font-size: 1.55rem; }
.cart-total small { font-size: .65rem; }
.button-checkout { width: 100%; color: white; background: var(--pink); }
.checkout-note { margin: 11px 0 0; color: var(--muted); text-align: center; font-size: .64rem; line-height: 1.4; }
.cart-guide-optin { margin-top: 18px; border: 1px solid rgba(228,22,117,.28); background: white; }
.cart-guide-optin summary { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 14px; cursor: pointer; list-style: none; }
.cart-guide-optin summary::-webkit-details-marker { display: none; }
.cart-guide-optin summary > span:nth-child(2) { display: grid; gap: 2px; }
.cart-guide-optin summary strong { font-size: .82rem; }
.cart-guide-optin summary small { color: var(--muted); font-size: .67rem; }
.cart-guide-gift { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--pink-light); }
.cart-guide-plus { color: var(--pink); font-size: 1.25rem; transition: transform .2s; }
.cart-guide-optin[open] .cart-guide-plus { transform: rotate(45deg); }
.cart-guide-form { display: grid; gap: 11px; padding: 0 14px 15px; }
.cart-guide-form > label:not(.cart-guide-consent):not(.lead-honeypot) { display: grid; gap: 5px; color: var(--ink); font-size: .66rem; font-weight: 700; }
.cart-guide-form input[type="text"], .cart-guide-form input[type="tel"] { width: 100%; min-width: 0; height: 42px; padding: 0 11px; border: 1px solid var(--border); border-radius: 3px; background: var(--cream); font: inherit; font-size: .78rem; outline: none; }
.cart-guide-form input:focus { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(228,22,117,.1); }
.cart-phone-field { display: grid; grid-template-columns: auto 1fr; align-items: center; border: 1px solid var(--border); border-radius: 3px; background: var(--cream); }
.cart-phone-field:focus-within { border-color: var(--pink); box-shadow: 0 0 0 3px rgba(228,22,117,.1); }
.cart-phone-field b { padding-left: 11px; color: var(--muted); font-size: .75rem; }
.cart-phone-field input[type="tel"] { border: 0; box-shadow: none; }
.cart-guide-consent { display: grid; grid-template-columns: auto 1fr; gap: 8px; align-items: start; color: var(--muted); font-size: .61rem; line-height: 1.45; }
.cart-guide-consent input { margin-top: 2px; accent-color: var(--pink); }
.cart-guide-form > button { min-height: 42px; color: white; border: 0; border-radius: 99px; background: var(--ink); cursor: pointer; font-size: .72rem; font-weight: 700; }
.cart-guide-form.is-loading .lead-button-label { display: none; }
.cart-guide-form:not(.is-loading) .lead-button-loading { display: none; }
.cart-guide-form .lead-form-status { margin: 0; font-size: .64rem; }
.cart-guide-success { display: grid; gap: 3px; margin: 0 14px 15px; padding: 12px; color: #1c6036; background: #e9f8ef; font-size: .72rem; }
.cart-guide-success span { font-size: .65rem; }
.cart-guide-optin.is-complete > summary { display: none; }
.guide-fab-wrap { position: fixed; z-index: 45; top: 48%; right: 0; transform: translateY(-50%); }
.guide-fab-wrap > summary { list-style: none; }
.guide-fab-wrap > summary::-webkit-details-marker { display: none; }
.guide-fab { display: flex; align-items: center; gap: 8px; padding: 15px 11px; color: white; border-radius: 14px 0 0 14px; background: var(--pink); box-shadow: 0 14px 35px rgba(188,12,90,.32); writing-mode: vertical-rl; cursor: pointer; font-size: .72rem; letter-spacing: .03em; }
.guide-fab span { font-size: 1rem; }
.guide-fab-panel { position: absolute; top: 50%; right: calc(100% + 12px); width: 290px; padding: 21px; visibility: hidden; opacity: 0; transform: translate(12px,-50%); color: var(--ink); border: 1px solid rgba(228,22,117,.2); background: white; box-shadow: 0 22px 55px rgba(37,35,38,.18); transition: opacity .2s, transform .2s, visibility .2s; }
.guide-fab-wrap:hover .guide-fab-panel, .guide-fab-wrap[open] .guide-fab-panel, .guide-fab-wrap:focus-within .guide-fab-panel { visibility: visible; opacity: 1; transform: translate(0,-50%); }
.guide-fab-panel small { display: block; margin-bottom: 8px; color: var(--pink); font-size: .58rem; font-weight: 700; letter-spacing: .14em; }
.guide-fab-panel > strong { display: block; font-size: 1.02rem; line-height: 1.25; }
.guide-fab-panel p { margin: 9px 0 15px; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.guide-fab-panel a { display: flex; justify-content: space-between; padding-top: 13px; color: var(--pink); border-top: 1px solid var(--border); font-size: .72rem; font-weight: 700; }
.test-toast {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  max-width: 350px;
  display: grid;
  gap: 4px;
  padding: 17px 20px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(15px);
  color: white;
  background: var(--ink);
  box-shadow: 0 18px 45px rgba(0,0,0,.25);
  transition: all .25s;
}
.test-toast.show { visibility: visible; opacity: 1; transform: translateY(0); }
.test-toast strong { font-size: .82rem; }
.test-toast span { color: rgba(255,255,255,.68); font-size: .72rem; line-height: 1.4; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { text-align: center; margin: auto; }
  .hero-actions, .trust-row { justify-content: center; }
  .hero-visual { min-height: 540px; }
  .lead-magnet { gap: 55px; padding: 75px 45px; }
  .lead-book { width: min(100%, 315px); }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { max-width: 600px; margin-top: 26px; }
  .story { gap: 48px; }
  .couple-teaser { gap: 50px; padding: 70px 45px; }
  .couple-image { min-height: 455px; }
  .couple-product-woman { width: 205px; height: 320px; }
  .couple-product-men { width: 195px; height: 300px; }
  .ingredients { grid-template-columns: 1fr; gap: 45px; }
  footer { grid-template-columns: 1fr; text-align: center; }
  footer p { margin: auto; }
  footer > span { text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 760px) {
  .nav { width: calc(100% - 32px); padding: 20px 0; }
  .nav .brand { font-size: 1.05rem; }
  .button-small { width: auto; min-height: 40px; padding: 0 15px; font-size: .82rem; }
  .hero { min-height: auto; padding: 125px 20px 50px; gap: 30px; }
  h1 { font-size: clamp(3rem, 15vw, 4.6rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { gap: 20px; }
  .button { width: 100%; }
  .text-link { margin: auto; }
  .trust-row { display: none; }
  .hero-visual { min-height: 450px; }
  .pink-orbit { width: 390px; height: 390px; }
  .product-card { width: 255px; height: 360px; }
  .floating-note { right: 5px; bottom: 25px; }
  .section { padding: 85px 20px; }
  .lead-magnet {
    grid-template-columns: 1fr;
    gap: 60px;
    margin-top: 35px;
    padding: 70px 20px;
  }
  .lead-book { width: min(76%, 320px); }
  .lead-library { width: min(100%, 480px); gap: 7px; padding-top: 40px; }
  .lead-book-badge { right: -20px; width: 80px; height: 80px; border-width: 5px; }
  .lead-copy { text-align: center; }
  .lead-intro { margin-inline: auto; }
  .lead-highlights { justify-content: center; }
  .lead-form { margin: auto; padding: 20px; text-align: left; }
  .lead-fields { grid-template-columns: 1fr; }
  .section-heading h2, .story h2, .ingredients h2, .offer h2, .faq h2, .closing h2 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .benefit-grid { grid-template-columns: 1fr; margin-top: 45px; }
  .benefit-card { min-height: 0; }
  .benefit-photo { height: 300px; }
  .benefit-content { min-height: 0; }
  .story { grid-template-columns: 1fr; padding-left: 0; padding-right: 0; }
  .story-image { min-height: 530px; }
  .story-copy { padding: 0 20px; }
  .couple-teaser { grid-template-columns: 1fr; padding: 70px 20px; text-align: center; }
  .couple-copy { order: 1; }
  .couple-image { order: 2; width: min(100%, 420px); min-height: 410px; margin: auto; }
  .couple-product-woman { left: 5%; width: 190px; height: 300px; }
  .couple-product-men { right: 4%; width: 180px; height: 280px; }
  .couple-plus { right: 8%; bottom: 7%; width: 52px; height: 52px; }
  .couple-copy > p { margin-inline: auto; }
  .couple-facts, .couple-actions { justify-content: center; }
  .couple-actions .button { width: 100%; }
  .ingredients { padding-left: 20px; padding-right: 20px; }
  .offer { grid-template-columns: 1fr; }
  .offer-copy, .offer-steps { padding: 65px 24px; }
  .faq { grid-template-columns: 1fr; gap: 45px; }
  .closing { padding: 85px 20px; }
  .closing .button { min-width: 0; }
  .cart-header { padding: 20px; }
  .cart-body { padding: 18px 16px; }
  .cart-footer { padding: 16px; }
  .cross-sell-card { grid-template-columns: 92px 1fr; gap: 13px; }
  .cross-sell-card > img { width: 92px; height: 150px; }
  .test-toast { right: 16px; bottom: 16px; left: 16px; max-width: none; }
  .guide-fab-wrap { top: auto; right: 16px; bottom: 16px; transform: none; }
  .guide-fab { padding: 12px 16px; border-radius: 999px; writing-mode: horizontal-tb; font-size: .76rem; }
  .guide-fab-panel { top: auto; right: 0; bottom: calc(100% + 12px); width: min(310px,calc(100vw - 32px)); transform: translateY(10px); }
  .guide-fab-wrap:hover .guide-fab-panel, .guide-fab-wrap[open] .guide-fab-panel, .guide-fab-wrap:focus-within .guide-fab-panel { transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee div { animation: none; }
}
