*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --rose: #9c1460;
  --rose-mid: #e8318a;
  --rose-light: #f48cbf;
  --rose-pale: #fde8f3;
  --orange: #e76f00;
  --gold: #f4c542;
  --gold-dark: #c9952a;
  --ink: #1a0a12;
  --ink-mid: #3d1128;
  --cream: #fffbf9;
  --off: #f8f3f6;
  --text: #1a0a12;
  --text-mid: #5a3545;
  --text-light: #9a7080;
  --border: #eed8e5;
  --green: #1a8a4a;
  --green-pale: #e6f7ee;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Open Sans", sans-serif;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

/* ── TOPBAR ── */
.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  padding: 9px 20px;
  font-size: 12px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.topbar strong {
  color: #fff;
}
.topbar .tpill {
  background: var(--rose-mid);
  color: #fff;
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-right: 8px;
}

/* ── NAV ── */
nav {
  background: rgba(255, 251, 249, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 60px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 300;
}
.nav-logo img {
  height: 40px;
  display: block;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}
.nav-links a:hover {
  color: var(--rose);
  background: var(--rose-pale);
}
.nav-links a.active {
  color: var(--rose);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-btn {
  background: var(--orange);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(231, 111, 0, 0.3);
}
.nav-btn:hover {
  background: #c55f00;
  transform: translateY(-1px);
}

/* ── OFFER BANNER ── */
.offer-banner {
  background: linear-gradient(90deg, var(--ink) 0%, var(--ink-mid) 100%);
  color: #fff;
  text-align: center;
  padding: 11px 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.timer-inline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
}
.tblock {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 800;
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.tsep {
  font-weight: 300;
  opacity: 0.5;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(
    160deg,
    var(--rose-pale) 0%,
    #fdf4f9 40%,
    #fff8e8 100%
  );
  padding: 80px 64px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(232, 49, 138, 0.07);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(244, 197, 66, 0.06);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(156, 20, 96, 0.12);
  color: var(--rose);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.04;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--rose-mid);
}
.hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-sub strong {
  font-weight: 700;
  color: var(--text);
}
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-main {
  display: inline-block;
  background: linear-gradient(135deg, var(--orange), #ff7700);
  color: #fff;
  padding: 17px 44px;
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(231, 111, 0, 0.38);
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-main:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(231, 111, 0, 0.5);
}
.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mid);
}
.hero-badge .ico {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(156, 20, 96, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-products-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}
.hero-products-row img {
  filter: drop-shadow(0 20px 40px rgba(156, 20, 96, 0.25));
  transition: transform 0.3s;
}
.hero-products-row img:hover {
  transform: translateY(-8px);
}
.hero-products-row .hp-main {
  width: 260px;
  animation: float 4s ease-in-out infinite;
}
.hero-products-row .hp-side {
  width: 190px;
  animation: float 4s ease-in-out infinite;
  margin-bottom: 16px;
}
.hero-products-row .hp-side.l {
  animation-delay: -0.6s;
}
.hero-products-row .hp-side.r {
  animation-delay: -1.2s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(232, 49, 138, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.trust-item .ti {
  font-size: 18px;
}
.trust-item b {
  color: var(--rose-mid);
}

/* ── PRESS BAR ── */
.press-bar {
  background: var(--off);
  padding: 22px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.press-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 12px;
}
.press-logos {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  align-items: center;
}
.press-logo {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 0.05em;
  opacity: 0.4;
}

/* ── PRODUCT NAV ── */
.product-nav {
  background: #fff;
  border-bottom: 2px solid var(--border);
  padding: 0 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: sticky;
  top: 68px;
  z-index: 200;
}
.pnav-item {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  text-decoration: none;
  padding: 16px 24px;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.pnav-item:hover {
  color: var(--rose);
}
.pnav-item.caps {
  border-bottom-color: transparent;
}
.pnav-item.caps:hover,
.pnav-item.caps.act {
  color: var(--rose);
  border-bottom-color: var(--rose);
}
.pnav-item.patches:hover,
.pnav-item.patches.act {
  color: var(--rose-mid);
  border-bottom-color: var(--rose-mid);
}
.pnav-item.cream:hover,
.pnav-item.cream.act {
  color: #7a4a1e;
  border-bottom-color: #c47a3a;
}
.pnav-sep {
  color: var(--border);
  padding: 0 4px;
  font-size: 20px;
  font-weight: 300;
}

/* ── PRODUCT SECTIONS COMMONS ── */
.product-section {
  padding: 80px 64px;
}
.ps-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 64px;
}
.ps-header.reverse {
  direction: rtl;
}
.ps-header.reverse > * {
  direction: ltr;
}
.ps-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  border-radius: 24px;
}
.ps-img-wrap img {
  width: 260px;
  filter: drop-shadow(0 24px 48px rgba(156, 20, 96, 0.25));
  animation: float 4s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.ps-img-glow {
  position: absolute;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.ps-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.ps-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.ps-desc {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 24px;
}
.ps-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.ps-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-mid);
}
.ps-benefits li::before {
  content: "✓";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ps-cta-link {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-decoration: none;
  display: block;
  margin-top: 12px;
  letter-spacing: 0.03em;
}
.ps-cta-link:hover {
  color: var(--rose-mid);
}

/* ── STOCK WARNING ── */
.stock-warning {
  text-align: center;
  background: #fff3cd;
  border: 1px solid #ffd700;
  border-radius: 8px;
  padding: 11px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #8a6d00;
  max-width: 460px;
  margin: 0 auto 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ── BUY BOX (single product, quantity-tiered pricing) ── */
.buy-box {
  max-width: 980px;
  margin: 0 auto;
  border: 2px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  background: #fff;
  box-shadow: 0 16px 48px rgba(156, 20, 96, 0.08);
}
.buy-box-inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: center;
}
.bb-media {
  position: relative;
  text-align: center;
}
.bb-badge-discount {
  position: absolute;
  top: -6px;
  right: 6px;
  background: var(--rose-mid);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  padding: 7px 16px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.bb-img {
  width: 220px;
  filter: drop-shadow(0 20px 40px rgba(156, 20, 96, 0.22));
  margin: 0 auto 16px;
  animation: float 4s ease-in-out infinite;
}
.bb-stars-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.bb-name {
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.bb-sub {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 22px;
}
.bb-shortcuts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}
.bb-shortcut {
  position: relative;
  border: 2px solid var(--border);
  background: #fff;
  border-radius: 12px;
  padding: 16px 8px 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Montserrat", sans-serif;
}
.bb-shortcut:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}
.bb-shortcut.active {
  border-color: var(--rose-mid);
  background: var(--rose-pale);
  box-shadow: 0 8px 24px rgba(232, 49, 138, 0.18);
}
.bb-sc-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
  background: var(--rose-mid);
  white-space: nowrap;
}
.bb-shortcut.best .bb-sc-badge {
  background: var(--gold-dark);
}
.bb-sc-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 5px;
}
.bb-sc-price {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--rose-mid);
}
.bb-stepper-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.bb-stepper {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.bb-stepper button {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--off);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.2s;
}
.bb-stepper button:hover {
  background: var(--rose-pale);
}
.bb-stepper input {
  width: 58px;
  height: 42px;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.bb-stepper input::-webkit-outer-spin-button,
.bb-stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.bb-stepper input[type="number"] {
  -moz-appearance: textfield;
}
.bb-tier-msg {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--rose-mid);
  background: var(--rose-pale);
  padding: 9px 16px;
  border-radius: 50px;
}
.bb-price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 10px;
}
.bb-price-old {
  font-size: 15px;
  color: var(--text-light);
  text-decoration: line-through;
}
.bb-price-new {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  color: var(--rose);
}
.bb-price-per {
  font-size: 12px;
  color: var(--text-light);
}
.bb-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--off);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 22px;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-mid);
}
.bb-total-row span:last-child {
  font-size: 21px;
  font-weight: 900;
  color: var(--ink);
}
.bb-add {
  width: 100%;
  padding: 17px;
}

.section-caps .bb-shortcut.active,
.section-patches .bb-shortcut.active {
  border-color: var(--rose-mid);
  background: var(--rose-pale);
}
.section-cream .bb-badge-discount {
  background: #c47a3a;
}
.section-cream .bb-shortcut.active {
  border-color: #c47a3a;
  background: #fff4e8;
}
.section-cream .bb-sc-badge {
  background: #c47a3a;
}
.section-cream .bb-shortcut.best .bb-sc-badge {
  background: var(--gold-dark);
}
.section-cream .bb-sc-price {
  color: #9a5a18;
}
.section-cream .bb-tier-msg {
  color: #9a5a18;
  background: #fff4e8;
}
.section-cream .bb-price-new {
  color: #9a5a18;
}

/* ── PACKS GRID ── */
.packs-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 20px;
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.pack-card {
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  background: #fff;
}
.pack-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(156, 20, 96, 0.1);
}
.pack-card.pop {
  border-width: 2px;
  box-shadow: 0 4px 24px rgba(232, 49, 138, 0.12);
}
.pack-top-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 18px;
  border-radius: 50px;
  white-space: nowrap;
  color: #fff;
}
.pack-sub-label {
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 10px;
}
.pack-imgs {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  height: 120px;
}
.pack-imgs img {
  object-fit: contain;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.12));
}

/* 1x — single centered image */
.pack-imgs.x1 {
  width: 110px;
  height: 120px;
}
.pack-imgs.x1 img {
  width: 110px;
  height: 110px;
}

/* 2x — two images side by side with offset */
.pack-imgs.x2 {
  width: 160px;
  height: 120px;
  position: relative;
}
.pack-imgs.x2 img {
  position: absolute;
  width: 90px;
  height: 90px;
}
.pack-imgs.x2 img:first-child {
  left: 0;
  bottom: 0;
}
.pack-imgs.x2 img:last-child {
  right: 0;
  bottom: 12px;
}

/* 4x — fan of 4 images */
.pack-imgs.x4 {
  width: 210px;
  height: 120px;
  position: relative;
}
.pack-imgs.x4 img {
  position: absolute;
  width: 76px;
  height: 76px;
}
.pack-imgs.x4 img:nth-child(1) {
  left: 0;
  bottom: 0;
}
.pack-imgs.x4 img:nth-child(2) {
  left: 46px;
  bottom: 10px;
}
.pack-imgs.x4 img:nth-child(3) {
  left: 92px;
  bottom: 18px;
}
.pack-imgs.x4 img:nth-child(4) {
  left: 138px;
  bottom: 24px;
}
.pack-stars {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 3px;
}
.pack-reviews {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 16px;
}
.pack-name {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}
.pack-price-old {
  font-size: 13px;
  color: var(--text-light);
  text-decoration: line-through;
  margin-bottom: 3px;
}
.pack-price-new {
  font-family: "Montserrat", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 3px;
}
.pack-price-per {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 8px;
}
.pack-savings {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.btn-cart {
  width: 100%;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  color: #fff;
  margin-bottom: 10px;
}
.btn-cart:hover {
  transform: translateY(-1px);
}
.pack-guarantee {
  font-size: 11px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.payment-icons {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-icon {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 5px 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
}

/* ── SECTION DIVIDER ── */
.sec-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 0 64px;
}

/* ── CAPSULES COLORS ── */
.section-caps {
  background: var(--cream);
}
.section-caps .ps-img-wrap {
  background: linear-gradient(135deg, #fff5fa 0%, var(--rose-pale) 100%);
}
.section-caps .ps-img-glow {
  background: rgba(232, 49, 138, 0.08);
}
.section-caps .ps-tag {
  color: var(--rose-mid);
}
.section-caps .ps-title .hl {
  color: var(--rose-mid);
}
.section-caps .ps-benefits li::before {
  background: var(--rose-pale);
  color: var(--rose-mid);
}
.section-caps .pack-card.pop {
  border-color: var(--rose-mid);
}
.section-caps .pack-top-badge {
  background: var(--rose-mid);
}
.section-caps .pack-stars {
  color: var(--gold-dark);
}
.section-caps .pack-price-new {
  color: var(--rose);
}
.section-caps .pack-savings {
  background: var(--rose-pale);
  color: var(--rose);
}
.section-caps .btn-cart.main {
  background: var(--rose-mid);
}
.section-caps .btn-cart.main:hover {
  background: var(--rose);
}
.section-caps .btn-cart.std {
  background: var(--orange);
}
.section-caps .btn-cart.std:hover {
  background: #c55f00;
}
.section-caps .pack-sub-label.feat {
  color: var(--rose);
}

/* ── PATCHES COLORS ── */
.section-patches {
  background: linear-gradient(180deg, var(--off) 0%, var(--cream) 100%);
}
.section-patches .ps-img-wrap {
  background: linear-gradient(135deg, #fff0f9 0%, #fde8f3 100%);
}
.section-patches .ps-img-glow {
  background: rgba(232, 49, 138, 0.07);
}
.section-patches .ps-tag {
  color: var(--rose-mid);
}
.section-patches .ps-title .hl {
  color: var(--rose-mid);
}
.section-patches .ps-benefits li::before {
  background: var(--rose-pale);
  color: var(--rose-mid);
}
.section-patches .pack-card.pop {
  border-color: var(--rose-mid);
}
.section-patches .pack-top-badge {
  background: var(--rose-mid);
}
.section-patches .pack-stars {
  color: var(--gold-dark);
}
.section-patches .pack-price-new {
  color: var(--rose);
}
.section-patches .pack-savings {
  background: var(--rose-pale);
  color: var(--rose);
}
.section-patches .btn-cart.main {
  background: var(--rose-mid);
}
.section-patches .btn-cart.main:hover {
  background: var(--rose);
}
.section-patches .btn-cart.std {
  background: var(--orange);
}
.section-patches .btn-cart.std:hover {
  background: #c55f00;
}

/* ── CREAM COLORS ── */
.section-cream {
  background: var(--cream);
}
.section-cream .ps-img-wrap {
  background: linear-gradient(135deg, #fff8f0 0%, #fef0e0 100%);
}
.section-cream .ps-img-glow {
  background: rgba(196, 122, 58, 0.08);
}
.section-cream .ps-tag {
  color: #c47a3a;
}
.section-cream .ps-title .hl {
  color: #c47a3a;
}
.section-cream .ps-benefits li::before {
  background: #fff4e8;
  color: #c47a3a;
}
.section-cream .pack-card.pop {
  border-color: #c47a3a;
}
.section-cream .pack-top-badge {
  background: #c47a3a;
}
.section-cream .pack-stars {
  color: var(--gold-dark);
}
.section-cream .pack-price-new {
  color: #9a5a18;
}
.section-cream .pack-savings {
  background: #fff4e8;
  color: #9a5a18;
}
.section-cream .btn-cart.main {
  background: #c47a3a;
}
.section-cream .btn-cart.main:hover {
  background: #9a5a18;
}
.section-cream .btn-cart.std {
  background: var(--orange);
}
.section-cream .btn-cart.std:hover {
  background: #c55f00;
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: linear-gradient(135deg, var(--rose-pale) 0%, #fff5fb 100%);
  padding: 72px 64px;
}
.guarantee-inner {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.guarantee-badge {
  font-size: 88px;
  flex-shrink: 0;
}
.guarantee-title {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: var(--ink);
  margin-bottom: 12px;
}
.guarantee-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
.guarantee-text strong {
  color: var(--text);
  font-weight: 700;
}

/* ── FAQ ── */
.faq-section {
  background: #fff;
  padding: 80px 64px;
}
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--rose);
}
.faq-arr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rose-pale);
  color: var(--rose-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    background 0.2s;
}
.faq-item.open .faq-arr {
  transform: rotate(45deg);
  background: var(--rose-mid);
  color: #fff;
}
.faq-a {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.35s;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

/* ── FOOTER ── */
footer {
  background: var(--ink);
  padding: 48px 40px 32px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.45);
}
footer img.flogo {
  height: 36px;
  margin-bottom: 16px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
footer p {
  margin-bottom: 6px;
}
footer .flinks {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin: 16px 0;
  flex-wrap: wrap;
}
footer .flinks a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: underline;
  font-size: 12px;
}
footer .fdisclaimer {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.22);
  max-width: 720px;
  margin: 16px auto 0;
  line-height: 1.7;
}
footer .fcopy {
  margin-top: 16px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── CENTER ── */
.center {
  text-align: center;
}
.sec-tag {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose-mid);
  margin-bottom: 12px;
}
.sec-title {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 900;
  line-height: 1.08;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.sec-title .hl {
  color: var(--rose-mid);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav {
    padding: 0 20px;
  }
  nav .nav-links {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    padding: 48px 24px 40px;
    gap: 24px;
  }
  .hero-right {
    min-height: 240px;
  }
  .hero-products-row .hp-main {
    width: 170px;
  }
  .hero-products-row .hp-side {
    width: 120px;
  }
  .hero-glow {
    width: 260px;
    height: 260px;
  }
  .product-section {
    padding: 56px 20px;
  }
  .ps-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ps-header.reverse {
    direction: ltr;
  }
  .ps-img-wrap {
    padding: 32px 24px;
    min-height: 200px;
  }
  .ps-img-wrap img {
    width: 180px;
  }
  .ps-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .packs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
  .pack-card {
    padding: 24px 20px;
  }
  .pack-imgs.x4 {
    width: 200px;
  }
  .pack-imgs.x2 {
    width: 150px;
  }
  .guarantee-section {
    padding: 48px 20px;
  }
  .guarantee-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }
  .guarantee-badge {
    font-size: 64px;
  }
  .guarantee-title {
    font-size: 22px;
  }
  .faq-section {
    padding: 56px 20px;
  }
  .trust-bar {
    padding: 16px 20px;
    gap: 16px;
  }
  .trust-item {
    font-size: 11px;
  }
  .press-bar {
    padding: 18px 20px;
  }
  .press-logos {
    gap: 20px;
  }
  .press-logo {
    font-size: 11px;
  }
  .product-nav {
    padding: 0 16px;
    overflow-x: auto;
    top: 56px;
    -webkit-overflow-scrolling: touch;
  }
  .product-nav::-webkit-scrollbar {
    display: none;
  }
  .pnav-item {
    font-size: 12px;
    padding: 14px 16px;
    white-space: nowrap;
  }
  .sec-divider {
    margin: 0 20px;
  }
  .stock-warning {
    margin-left: 20px;
    margin-right: 20px;
    font-size: 12px;
  }
  footer {
    padding: 40px 20px;
  }
  .offer-banner {
    font-size: 12px;
    padding: 10px 16px;
  }
  .buy-box {
    padding: 28px 22px;
  }
  .buy-box-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .bb-img {
    width: 170px;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 36px 16px 32px;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero-sub {
    font-size: 14px;
  }
  .hero-products-row .hp-main {
    width: 140px;
  }
  .hero-products-row .hp-side {
    width: 96px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .btn-main {
    width: 100%;
    text-align: center;
  }
  .hero-badges {
    gap: 12px;
  }
  .product-section {
    padding: 44px 16px;
  }
  .ps-header {
    gap: 20px;
  }
  .ps-title {
    font-size: 28px;
  }
  .packs-grid {
    max-width: 100%;
  }
  .pack-price-new {
    font-size: 30px;
  }
  .trust-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
  }
  .payment-icons {
    gap: 6px;
  }
  .pay-icon {
    font-size: 10px;
    padding: 4px 10px;
  }
  .topbar {
    font-size: 11px;
    padding: 8px 12px;
  }
  .sec-title {
    font-size: 26px;
  }
  .guarantee-title {
    font-size: 20px;
  }
  .guarantee-text {
    font-size: 14px;
  }
  .faq-q {
    font-size: 14px;
  }
  .bb-shortcuts {
    grid-template-columns: 1fr;
  }
  .bb-stepper-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.nav-cart-btn {
  position: relative;
  cursor: pointer;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  border-radius: 4px;
  transition: background 0.2s;
}

.nav-cart-count {
  display: none;
  position: absolute;
  top: -7px;
  right: -7px;
  background: #fff;
  color: var(--orange);
  font-size: 10px;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  border: 2px solid var(--orange);
}

.ps-ingredients-box {
  background: var(--off);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
}

.ps-ingredients-label {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 6px;
}

.ps-ingredients-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

.ps-ingredients-box--cream {
  background: #fff8f0;
  border-color: #ffe0c0;
}

.ps-ingredients-box--cream .ps-ingredients-label--cream {
  color: #c47a3a;
}

.ps-review-box {
  background: var(--rose-pale);
  border-radius: 10px;
  padding: 14px 18px;
  margin-bottom: 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.ps-review-avatar {
  font-size: 28px;
  flex-shrink: 0;
}

.ps-review-name {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--rose);
}

.ps-review-text {
  font-size: 13px;
  color: var(--text-mid);
  font-style: italic;
  margin-top: 4px;
  font-weight: 300;
}

.ps-review-box--cream {
  background: #fff4e8;
}

.ps-review-name--cream {
  color: #c47a3a;
}

.btn-main--cream {
  background: linear-gradient(135deg, #c47a3a, #e09050);
}

.btn-cart--cream {
  background: #c47a3a;
}

.btn-cart--cream:hover {
  background: #9a5a18;
}
