*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --blue: #00a8ff;
  --blue-mid: #00a8ff;
  --blue-dark: #0077cc;
  --blue-pale: rgba(0, 168, 255, 0.08);
  --violet: #3f6ad6;
  --violet-dark: #2d4fb0;
  --violet-pale: rgba(63, 106, 214, 0.08);
  --teal: #12c7ae;
  --teal-dark: #0e9986;
  --teal-pale: rgba(18, 199, 174, 0.08);
  --gold: #f4c542;
  --gold-dark: #c9952a;
  --gold-pale: rgba(244, 197, 66, 0.1);
  --cyan: #22d3ee;
  --cyan-dark: #0891b2;
  --cyan-pale: rgba(34, 211, 238, 0.08);
  --orange: #e76f00;
  --ink: #030912;
  --ink-mid: #050d1a;
  --card: #071628;
  --cream: #030912;
  --off: #050d1a;
  --text: #ffffff;
  --text-mid: #7aa8d0;
  --text-light: #4a6a8a;
  --text-faint: #2a4a6a;
  --border: #0d2a47;
  --green: #2d8a4e;
  --green-pale: rgba(45, 138, 78, 0.15);
}
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);
  border-bottom: 1px solid var(--border);
  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(--orange);
  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: var(--ink-mid);
  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;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}
.nav-logo,
.nav-logo img {
  height: 40px;
  width: auto;
  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(--blue);
  background: var(--blue-pale);
}
.nav-links a.active {
  color: var(--blue);
}
.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%);
  border-bottom: 1px solid var(--border);
  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(0, 168, 255, 0.15);
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 4px;
  padding: 4px 8px;
  font-size: 14px;
  font-weight: 800;
  min-width: 32px;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--blue);
}
.tsep {
  font-weight: 300;
  opacity: 0.5;
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--ink-mid) 0%, var(--card) 50%, var(--ink) 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(0, 168, 255, 0.1);
  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(0, 168, 255, 0.12);
  border: 1px solid rgba(0, 168, 255, 0.25);
  color: var(--blue);
  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: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.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: #fff;
}
.hero-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-mid);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.hero-price strong {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.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(0, 168, 255, 0.12);
  border: 1px solid rgba(0, 168, 255, 0.2);
  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;
  flex-wrap: wrap;
}
.hero-products-row img {
  filter: drop-shadow(0 20px 40px rgba(0, 168, 255, 0.25));
  transition: transform 0.3s;
}
.hero-products-row img:hover {
  transform: translateY(-8px);
}
.hero-products-row .hp-main {
  width: 118px;
  height: 173px;
  object-fit: contain;
  animation: float 4s ease-in-out infinite;
  margin-bottom: 16px;
}
.hero-products-row .hp-side {
  width: 118px;
  height: 173px;
  object-fit: contain;
  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;
}
.hero-products-row .hp-side.xl {
  animation-delay: -1.8s;
}
.hero-products-row .hp-side.c {
  animation-delay: -2.4s;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(0, 168, 255, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--card);
  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-mid);
}
.trust-item .ti {
  font-size: 18px;
}
.trust-item b {
  color: var(--blue);
}

/* ── PRODUCT NAV ── */
.product-nav {
  background: var(--ink-mid);
  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 20px;
  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(--blue);
}
.pnav-item.gel:hover,
.pnav-item.gel.act {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
.pnav-item.x3:hover,
.pnav-item.x3.act {
  color: var(--violet);
  border-bottom-color: var(--violet);
}
.pnav-item.x30:hover,
.pnav-item.x30.act {
  color: var(--teal);
  border-bottom-color: var(--teal);
}
.pnav-item.spray:hover,
.pnav-item.spray.act {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.pnav-item.capsules:hover,
.pnav-item.capsules.act {
  color: var(--cyan);
  border-bottom-color: var(--cyan);
}
.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;
  border: 1px solid var(--border);
}
.ps-img-wrap img {
  width: 260px;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.5));
  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: #fff;
  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(--blue);
}

/* ── STOCK WARNING ── */
.stock-warning {
  text-align: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 24px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
  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: 1px solid var(--border);
  border-radius: 24px;
  padding: 44px;
  background: var(--card);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}
.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(--blue);
  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.3);
  z-index: 2;
}
.bb-img {
  width: 220px;
  height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0, 168, 255, 0.2));
  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: #fff;
  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: 1px solid var(--border);
  background: var(--ink-mid);
  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.3);
}
.bb-shortcut.active {
  border-color: var(--blue);
  background: var(--blue-pale);
  box-shadow: 0 8px 24px rgba(0, 168, 255, 0.18);
}
.bb-sc-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  max-width: calc(100% - 8px);
  box-sizing: border-box;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 3px 10px;
  border-radius: 50px;
  color: #fff;
  background: var(--blue);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.bb-shortcut.best .bb-sc-badge {
  background: var(--gold-dark);
}
.bb-sc-title {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 5px;
}
.bb-sc-price {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--blue);
}
.bb-stepper-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.bb-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.bb-stepper button {
  width: 42px;
  height: 42px;
  border: none;
  background: var(--ink-mid);
  font-size: 19px;
  font-weight: 800;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s;
}
.bb-stepper button:hover {
  background: var(--blue-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: #fff;
  background: var(--ink-mid);
}
.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(--blue);
  background: var(--blue-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(--blue);
}
.bb-price-per {
  font-size: 12px;
  color: var(--text-light);
}
.bb-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink-mid);
  border: 1px solid var(--border);
  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: #fff;
}
.bb-savings {
  background: var(--green-pale);
  color: #4fce7a;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
}
.btn-cart {
  display: inline-block;
  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;
  background: var(--blue);
  margin-bottom: 10px;
}
.btn-cart:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
}
.btn-cart:active {
  transform: scale(0.96);
}
.bb-add {
  width: 100%;
  padding: 17px;
}

/* ── X3 (BOOSTER CAPSULES) COLORS — violet ── */
.section-x3 .bb-badge-discount {
  background: var(--violet);
}
.section-x3 .bb-shortcut.active {
  border-color: var(--violet);
  background: var(--violet-pale);
}
.section-x3 .bb-sc-badge {
  background: var(--violet);
}
.section-x3 .bb-shortcut.best .bb-sc-badge {
  background: var(--gold-dark);
}
.section-x3 .bb-sc-price {
  color: var(--violet);
}
.section-x3 .bb-tier-msg {
  color: var(--violet);
  background: var(--violet-pale);
}
.section-x3 .bb-price-new {
  color: var(--violet);
}
.section-x3 .bb-shortcut:hover {
  box-shadow: 0 8px 20px rgba(124, 92, 255, 0.15);
}

/* ── X30 (DAILY USE CAPSULES) COLORS — teal ── */
.section-x30 .bb-badge-discount {
  background: var(--teal);
}
.section-x30 .bb-shortcut.active {
  border-color: var(--teal);
  background: var(--teal-pale);
}
.section-x30 .bb-sc-badge {
  background: var(--teal);
}
.section-x30 .bb-shortcut.best .bb-sc-badge {
  background: var(--gold-dark);
}
.section-x30 .bb-sc-price {
  color: var(--teal);
}
.section-x30 .bb-tier-msg {
  color: var(--teal);
  background: var(--teal-pale);
}
.section-x30 .bb-price-new {
  color: var(--teal);
}
.section-x30 .bb-shortcut:hover {
  box-shadow: 0 8px 20px rgba(18, 199, 174, 0.15);
}

/* ── SPRAY COLORS — gold ── */
.section-spray .bb-badge-discount {
  background: var(--gold-dark);
}
.section-spray .bb-shortcut.active {
  border-color: var(--gold-dark);
  background: var(--gold-pale);
}
.section-spray .bb-sc-badge {
  background: var(--gold-dark);
}
.section-spray .bb-shortcut.best .bb-sc-badge {
  background: var(--gold-dark);
}
.section-spray .bb-sc-price {
  color: var(--gold);
}
.section-spray .bb-tier-msg {
  color: var(--gold);
  background: var(--gold-pale);
}
.section-spray .bb-price-new {
  color: var(--gold);
}
.section-spray .bb-shortcut:hover {
  box-shadow: 0 8px 20px rgba(244, 197, 66, 0.15);
}

/* ── CAPSULES COLORS — cyan ── */
.section-capsules .bb-badge-discount {
  background: var(--cyan-dark);
}
.section-capsules .bb-shortcut.active {
  border-color: var(--cyan-dark);
  background: var(--cyan-pale);
}
.section-capsules .bb-sc-badge {
  background: var(--cyan-dark);
}
.section-capsules .bb-shortcut.best .bb-sc-badge {
  background: var(--cyan-dark);
}
.section-capsules .bb-sc-price {
  color: var(--cyan);
}
.section-capsules .bb-tier-msg {
  color: var(--cyan);
  background: var(--cyan-pale);
}
.section-capsules .bb-price-new {
  color: var(--cyan);
}
.section-capsules .bb-shortcut:hover {
  box-shadow: 0 8px 20px rgba(34, 211, 238, 0.15);
}

/* ── PACKS GRID (legacy, kept for compatibility) ── */
.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;
}
.payment-icons {
  display: flex;
  justify-content: center;
  margin-top: 28px;
  gap: 8px;
  flex-wrap: wrap;
}
.pay-icon {
  background: var(--ink-mid);
  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);
}
.pay-icon-logo-wrap {
  display: flex;
  align-items: center;
  padding: 5px 14px;
}
.pay-icon-logo {
  height: 14px;
  width: auto;
  display: block;
  filter: invert(1) brightness(1.6);
  opacity: 0.85;
}

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

/* ── GEL COLORS — electric blue (default/primary) ── */
.section-gel {
  background: var(--ink);
}
.section-gel .ps-img-wrap {
  background: linear-gradient(135deg, var(--card) 0%, rgba(0, 168, 255, 0.06) 100%);
}
.section-gel .ps-img-glow {
  background: rgba(0, 168, 255, 0.12);
}
.section-gel .ps-tag {
  color: var(--blue);
}
.section-gel .ps-title .hl {
  color: var(--blue);
}
.section-gel .ps-benefits li::before {
  background: var(--blue-pale);
  color: var(--blue);
}
.section-gel .btn-cart.main {
  background: var(--blue);
}
.section-gel .btn-cart.main:hover {
  background: var(--blue-dark);
}

/* ── X3 CAPSULES SECTION COLORS — violet ── */
.section-x3 {
  background: var(--ink-mid);
}
.section-x3 .ps-img-wrap {
  background: linear-gradient(135deg, var(--card) 0%, rgba(124, 92, 255, 0.08) 100%);
}
.section-x3 .ps-img-glow {
  background: rgba(124, 92, 255, 0.14);
}
.section-x3 .ps-tag {
  color: var(--violet);
}
.section-x3 .ps-title .hl {
  color: var(--violet);
}
.section-x3 .ps-benefits li::before {
  background: var(--violet-pale);
  color: var(--violet);
}
.section-x3 .btn-cart.main {
  background: var(--violet);
}
.section-x3 .btn-cart.main:hover {
  background: var(--violet-dark);
}

/* ── X30 CAPSULES SECTION COLORS — teal ── */
.section-x30 {
  background: var(--ink);
}
.section-x30 .ps-img-wrap {
  background: linear-gradient(135deg, var(--card) 0%, rgba(18, 199, 174, 0.08) 100%);
}
.section-x30 .ps-img-glow {
  background: rgba(18, 199, 174, 0.14);
}
.section-x30 .ps-tag {
  color: var(--teal);
}
.section-x30 .ps-title .hl {
  color: var(--teal);
}
.section-x30 .ps-benefits li::before {
  background: var(--teal-pale);
  color: var(--teal);
}
.section-x30 .btn-cart.main {
  background: var(--teal);
}
.section-x30 .btn-cart.main:hover {
  background: var(--teal-dark);
}

/* ── SPRAY SECTION COLORS — gold ── */
.section-spray {
  background: var(--ink-mid);
}
.section-spray .ps-img-wrap {
  background: linear-gradient(135deg, var(--card) 0%, rgba(244, 197, 66, 0.1) 100%);
}
.section-spray .ps-img-glow {
  background: rgba(244, 197, 66, 0.14);
}
.section-spray .ps-tag {
  color: var(--gold);
}
.section-spray .ps-title .hl {
  color: var(--gold);
}
.section-spray .ps-benefits li::before {
  background: var(--gold-pale);
  color: var(--gold);
}
.section-spray .btn-cart.main {
  background: var(--gold-dark);
}
.section-spray .btn-cart.main:hover {
  background: #a67a1f;
}

/* ── CAPSULES SECTION COLORS — cyan ── */
.section-capsules {
  background: var(--ink);
}
.section-capsules .ps-img-wrap {
  background: linear-gradient(135deg, var(--card) 0%, rgba(34, 211, 238, 0.1) 100%);
}
.section-capsules .ps-img-glow {
  background: rgba(34, 211, 238, 0.14);
}
.section-capsules .ps-tag {
  color: var(--cyan);
}
.section-capsules .ps-title .hl {
  color: var(--cyan);
}
.section-capsules .ps-benefits li::before {
  background: var(--cyan-pale);
  color: var(--cyan);
}
.section-capsules .btn-cart.main {
  background: var(--cyan-dark);
}
.section-capsules .btn-cart.main:hover {
  background: #06749a;
}

/* ── ROUTINE BUNDLES ── */
.bundle-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  border-top: 2px solid var(--border);
  border-bottom: 2px solid var(--border);
  padding: 56px 24px;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1160px;
  margin: 32px auto 0;
}
.bundle-card {
  background: var(--ink-mid);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
}
.bundle-card .bundle-add {
  margin-top: auto;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.bundle-card.featured {
  border-color: var(--blue);
  background: linear-gradient(135deg, var(--ink-mid) 0%, rgba(0, 168, 255, 0.1) 100%);
}
.bundle-badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.bundle-badge.combo {
  background: var(--gold-pale);
  color: var(--gold-dark);
}
.bundle-badge.hair {
  background: var(--cyan-pale);
  color: var(--cyan-dark);
}
.bundle-card.hair {
  border-color: var(--cyan-dark);
}
.bundle-card-title {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
  min-height: 2.4em;
}
.bundle-card-title .hl {
  color: var(--blue);
}
.bundle-card-sub {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 24px;
  min-height: calc(1.65em * 4);
}
.bundle-products {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
  min-height: 164px;
}
.bundle-products img {
  width: 56px;
  height: 74px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.4));
}
.bundle-price-row {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
}
.bundle-price-old {
  font-size: 16px;
  color: var(--text-light);
  text-decoration: line-through;
}
.bundle-price-new {
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
}
.bundle-save-badge {
  display: inline-block;
  background: var(--green-pale);
  color: #4fce7a;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.bundle-add {
  display: inline-block;
}
@media (max-width: 700px) {
  .bundle-section {
    padding: 40px 20px;
  }
  .bundle-grid {
    grid-template-columns: 1fr;
  }
  .bundle-products img {
    width: 48px;
    height: 63px;
  }
  .bundle-price-new {
    font-size: 24px;
  }
}

/* ── EXIT INTENT ── */
.exit-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
}
.exit-overlay.open {
  display: block;
}
.exit-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  max-width: 380px;
  width: calc(100% - 40px);
  text-align: center;
  z-index: 999;
}
.exit-modal.open {
  display: block;
}
.exit-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  cursor: pointer;
  color: var(--text-light);
  font-size: 16px;
}
.exit-modal-icon {
  font-size: 40px;
  margin-bottom: 12px;
}
.exit-modal-title {
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 10px;
}
.exit-modal-text {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
  margin-bottom: 20px;
}
.exit-modal-cta {
  width: 100%;
}

/* ── GUARANTEE ── */
.guarantee-section {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  padding: 72px 64px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.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: #fff;
  margin-bottom: 12px;
}
.guarantee-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}
.guarantee-text strong {
  color: #fff;
  font-weight: 700;
}

/* ── ROUTINE COMPARISON ── */
.compare-section {
  background: var(--ink);
  padding: 72px 64px;
}
.compare-intro {
  text-align: center;
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}
.compare-table {
  width: 100%;
  max-width: 900px;
  margin: 40px auto 0;
  border-collapse: collapse;
  font-size: 14px;
}
.compare-table th {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--blue);
  padding: 14px;
  text-align: left;
}
.compare-table th:first-child {
  border-radius: 10px 0 0 0;
}
.compare-table th:last-child {
  border-radius: 0 10px 0 0;
}
.compare-table td {
  padding: 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-weight: 300;
  vertical-align: top;
}
.compare-table tr:nth-child(even) td {
  background: var(--blue-pale);
}
.compare-table td:first-child {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  color: var(--text);
}
.compare-table a {
  color: var(--blue);
  text-decoration: none;
}
@media (max-width: 700px) {
  .compare-section {
    padding: 48px 20px;
  }
  .compare-table {
    font-size: 12px;
  }
  .compare-table th,
  .compare-table td {
    padding: 10px;
  }
}

/* ── FAQ ── */
.faq-section {
  background: var(--ink);
  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: #fff;
  transition: color 0.2s;
}
.faq-q:hover {
  color: var(--blue);
}
.faq-arr {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  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(--blue);
  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);
  border-top: 1px solid var(--border);
  padding: 48px 40px 32px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  color: var(--text-light);
}
footer img.flogo {
  height: 36px;
  width: auto;
  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: var(--text-light);
  text-decoration: underline;
  font-size: 12px;
}
footer .fdisclaimer {
  font-size: 11px;
  color: var(--text-faint);
  max-width: 720px;
  margin: 16px auto 0;
  line-height: 1.7;
}
footer .fcopy {
  margin-top: 16px;
  font-size: 11px;
  color: var(--text-faint);
}

/* ── 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(--blue);
  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: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.sec-title .hl {
  color: var(--blue);
}

/* ── 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: 100px;
    height: 147px;
  }
  .hero-products-row .hp-side {
    width: 100px;
    height: 147px;
  }
  .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;
    height: 235px;
  }
  .ps-title {
    font-size: clamp(26px, 7vw, 36px);
  }
  .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;
  }
  .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 14px;
    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;
    height: 201px;
  }
}

@media (min-width: 701px) and (max-width: 960px) {
  .bundle-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 700px;
  }
}

@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: 76px;
    height: 111px;
  }
  .hero-products-row .hp-side {
    width: 76px;
    height: 111px;
  }
  .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;
  }
  .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(--blue);
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-cart-btn:hover {
  background: var(--blue-dark);
}
@keyframes cartPulse {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.nav-cart-btn.pulse {
  animation: cartPulse 0.4s ease;
}

.nav-cart-count {
  display: none;
  position: absolute;
  top: -7px;
  right: -7px;
  background: #fff;
  color: var(--blue);
  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(--blue);
}

.ps-ingredients-box {
  background: var(--card);
  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-review-box {
  background: var(--blue-pale);
  border: 1px solid rgba(0, 168, 255, 0.15);
  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(--blue);
}

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

.section-x3 .ps-review-box {
  background: var(--violet-pale);
  border-color: rgba(124, 92, 255, 0.2);
}
.section-x3 .ps-review-name {
  color: var(--violet);
}
.section-x30 .ps-review-box {
  background: var(--teal-pale);
  border-color: rgba(18, 199, 174, 0.2);
}
.section-x30 .ps-review-name {
  color: var(--teal);
}
.section-spray .ps-review-box {
  background: var(--gold-pale);
  border-color: rgba(244, 197, 66, 0.2);
}
.section-spray .ps-review-name {
  color: var(--gold);
}
.section-capsules .ps-review-box {
  background: var(--cyan-pale);
  border-color: rgba(34, 211, 238, 0.2);
}
.section-capsules .ps-review-name {
  color: var(--cyan);
}

.btn-main--x3 {
  background: linear-gradient(135deg, var(--violet), #6f95ff);
}
.btn-cart--x3 {
  background: var(--violet);
}
.btn-cart--x3:hover {
  background: var(--violet-dark);
}
.btn-main--x30 {
  background: linear-gradient(135deg, var(--teal), #17e0c4);
}
.btn-cart--x30 {
  background: var(--teal);
}
.btn-cart--x30:hover {
  background: var(--teal-dark);
}
.btn-main--spray {
  background: linear-gradient(135deg, var(--gold-dark), #dba93a);
}
.btn-cart--spray {
  background: var(--gold-dark);
}
.btn-cart--spray:hover {
  background: #a67a1f;
}
.btn-main--capsules {
  background: linear-gradient(135deg, var(--cyan-dark), #22d3ee);
}
.btn-cart--capsules {
  background: var(--cyan-dark);
}
.btn-cart--capsules:hover {
  background: #06749a;
}
