@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@700;800;900&family=Teko:wght@500;600;700&display=swap");

:root {
  --black: #000000;
  --dark: #05070a;
  --panel: #080b0f;
  --white: #ffffff;
  --muted: #929faa;
  --blue: #078cff;
  --blue-light: #58b9ff;
  --border: rgba(140, 175, 205, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100%;
  background: #000000;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  color: #ffffff;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(20, 40, 60, 0.18),
      transparent 35%
    ),
    linear-gradient(
      180deg,
      #000000,
      #030405 45%,
      #05080b 75%,
      #000000
    );
  font-family: Arial, Helvetica, sans-serif;
}

body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

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


/* BACKGROUND */

.site-background {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  background:
    radial-gradient(
      ellipse at 20% 20%,
      rgba(35, 50, 65, 0.20),
      transparent 42%
    ),
    radial-gradient(
      ellipse at 80% 70%,
      rgba(0, 90, 170, 0.10),
      transparent 42%
    ),
    linear-gradient(
      135deg,
      #000000,
      #05070a 50%,
      #000000
    );
}

.site-grid {
  position: fixed;
  inset: 0;
  z-index: -9;
  opacity: 0.16;
  pointer-events: none;
  background-image:
    linear-gradient(
      rgba(255,255,255,0.018) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,0.018) 1px,
      transparent 1px
    );
  background-size: 80px 80px;
}

.light-beams {
  position: fixed;
  inset: 0;
  z-index: -8;
  pointer-events: none;
}

.beam {
  position: absolute;
  top: -20%;
  width: 2px;
  height: 140%;
  opacity: .10;
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(88,185,255,.28),
      transparent
    );
  transform: rotate(18deg);
  animation: beamMove 14s ease-in-out infinite alternate;
}

.beam-one {
  left: 17%;
}

.beam-two {
  left: 57%;
  animation-delay: -4s;
}

.beam-three {
  right: 12%;
  animation-delay: -8s;
}


/* LOGOS */

.logo {
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,.7));
}

.header-logo {
  width: 178px;
  max-height: 72px;
}

.age-logo {
  width: min(250px,75%);
  max-height: 220px;
  margin: 0 auto 15px;
}

.footer-logo {
  width: 190px;
  margin-bottom: 18px;
}


/* AGE GATE */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 20px;
  background: rgba(0,0,0,.985);
  backdrop-filter: blur(18px);
}

.age-gate.hidden {
  display: none !important;
}

.age-card {
  position: relative;
  z-index: 2;
  width: min(560px,100%);
  margin: auto;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid rgba(88,185,255,.20);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at top,
      rgba(7,100,180,.10),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      #0b0f14,
      #010203
    );
  box-shadow: 0 40px 100px rgba(0,0,0,.85);
}

.age-number {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin: 10px auto 20px;
  font-size: 34px;
  font-weight: 900;
  border: 1px solid rgba(88,185,255,.35);
  border-radius: 50%;
  background: rgba(7,110,200,.10);
}

.age-card h2 {
  margin: 0 0 12px;
  font-size: 34px;
  text-transform: uppercase;
}

.age-card p {
  color: #a5b1bb;
  line-height: 1.7;
}

.age-warning {
  margin: 22px 0;
  padding: 15px;
  color: #aab5be;
  font-size: 13px;
  line-height: 1.65;
  text-align: left;
  border: 1px solid rgba(140,170,195,.14);
  border-radius: 12px;
  background: #07090c;
}

.age-buttons {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.age-buttons button {
  position: relative;
  z-index: 3;
  min-height: 50px;
  padding: 12px 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #078cff;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      #087fdf,
      #034e91
    );
  pointer-events: auto !important;
  touch-action: manipulation;
}

.secondary-button {
  border-color: rgba(255,255,255,.18) !important;
  background: #090c10 !important;
}


/* HEADER */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(140,170,195,.10);
  background: rgba(0,0,0,.94);
  backdrop-filter: blur(16px);
}

.navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 20px;
}

.site-header .navigation {
  width: calc(100% - 36px);
  max-width: none;
}

.brand {
  display: flex;
  align-items: center;
}

#mainMenu {
  display: flex;
  align-items: center;
  gap: 24px;
}

#mainMenu a,
.header-actions a {
  color: #a9b5bf;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: .25s;
}

#mainMenu a:hover,
.header-actions a:hover {
  color: #58b9ff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.menu-button {
  display: none;
  color: #fff;
  font-size: 27px;
  border: 0;
  background: transparent;
}


/* HERO */

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  isolation: isolate;
  background: #000;
  border-bottom: 1px solid rgba(140,170,195,.08);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;

  background-image:
    url("https://i.ibb.co/5WW31bpN/Chat-GPT-Image-Aug-12-2026-03-31-09-PM.png");

  background-size: 72% auto;
  background-position: right center;
  background-repeat: no-repeat;

  filter:
    contrast(1.12)
    saturate(1.10)
    brightness(1.03);

  transform: scale(1.002);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,.98),
      rgba(0,0,0,.92) 17%,
      rgba(0,0,0,.73) 32%,
      rgba(0,0,0,.35) 49%,
      rgba(0,0,0,.05) 70%,
      transparent
    ),
    linear-gradient(
      180deg,
      rgba(0,0,0,.03),
      transparent 70%,
      rgba(0,0,0,.72)
    );
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  align-items: center;
  min-height: 780px;
  padding: 80px 0;
}

.hero-copy {
  max-width: 720px;
}


/* CONTACT BUTTON */

.home-contact-button {
  position: absolute;
  top: 24px;
  left: max(20px, calc((100% - 1240px) / 2));
  z-index: 20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 15px;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(88,185,255,.30);
  border-radius: 8px;
  background: rgba(2,7,11,.82);
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(7,140,255,.08);
  transition: .25s;
}

.home-contact-button:hover {
  color: #58b9ff;
  border-color: rgba(88,185,255,.65);
  background: rgba(5,13,21,.95);
  transform: translateY(-2px);
}


/* HERO TITLE */

.section-label {
  margin: 0 0 10px;
  color: #58b9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero h1 {
  position: relative;
  margin: 0;
  max-width: 790px;
  font-family: "Orbitron", Arial, sans-serif;
  font-size: clamp(58px,6.4vw,98px);
  font-weight: 900;
  font-style: normal;
  letter-spacing: -3px;
  line-height: .91;
  text-transform: uppercase;
  transform: none;
  text-shadow: none;
}

.hero h1 span {
  display: block;
  margin-top: 4px;
  color: #58b9ff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
}

.hero h1::before {
  content: "";
  position: absolute;
  left: 4px;
  bottom: -24px;
  width: 190px;
  height: 4px;
  background:
    linear-gradient(
      90deg,
      #078cff,
      #58b9ff,
      transparent
    );
  box-shadow: 0 0 16px rgba(7,140,255,.58);
}

.hero-visual {
  opacity: 0;
  pointer-events: none;
}


/* BUTTONS */

.hero-buttons,
.affiliate-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 56px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 27px;
  color: #ffffff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 10px;
  font-family: inherit;
  cursor: pointer;
  transition: .25s;
}

.primary-button {
  border: 1px solid #078cff;
  background:
    linear-gradient(
      135deg,
      #0a91ff,
      #03569e
    );
  box-shadow: 0 0 28px rgba(7,140,255,.20);
}

.outline-button {
  border: 1px solid rgba(255,255,255,.20);
  background: rgba(3,5,7,.82);
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(7,140,255,.25);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 29px;
}

.hero-badges span {
  color: #c3cdd5;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-badges span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: #078cff;
  box-shadow: 0 0 9px rgba(7,140,255,.55);
}


/* MOVING BAR */

.moving-bar {
  overflow: hidden;
  border-top: 1px solid rgba(140,170,195,.08);
  border-bottom: 1px solid rgba(140,170,195,.08);
  background: #010203;
}

.moving-track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.moving-items {
  display: flex;
  flex-shrink: 0;
}

.moving-items span {
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 0 28px;
  color: #bcc6ce;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.moving-items span::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 16px;
  border-radius: 50%;
  background: #078cff;
}


/* SECTIONS */

.section {
  position: relative;
  padding: 105px 0;
}

.product-group {
  padding-top: 35px;
  scroll-margin-top: 100px;
}

.product-group + .product-group {
  margin-top: 80px;
  padding-top: 85px;
  border-top: 1px solid rgba(140,170,195,.08);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading.centered {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(42px,6vw,68px);
  font-weight: 950;
  letter-spacing: -3px;
  line-height: 1;
  text-transform: uppercase;
}

.section-heading h2 span {
  color: transparent;
  background:
    linear-gradient(
      90deg,
      #fff,
      #bcd7eb,
      #138de9
    );
  -webkit-background-clip: text;
  background-clip: text;
}


/* PRODUCTS */

.product-grid {
  display: grid;
  grid-template-columns: repeat(4,minmax(0,1fr));
  gap: 22px;
}

.product-card,
.catalog-card {
  --rx: 0deg;
  --ry: 0deg;
  perspective: 1200px;
}

.product-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 430px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid rgba(140,170,195,.14);
  border-radius: 20px;
  background:
    linear-gradient(
      150deg,
      #0b0e12,
      #010203
    );
  box-shadow: 0 25px 60px rgba(0,0,0,.55);
  transform:
    rotateX(var(--rx))
    rotateY(var(--ry));
  transition: .2s;
}

.product-card-inner:hover {
  border-color: rgba(88,185,255,.40);
  box-shadow:
    0 34px 80px rgba(0,0,0,.70),
    0 0 28px rgba(7,140,255,.08);
}

.product-badge {
  color: #58b9ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.product-card.out-of-stock-card .product-card-inner {
  border-color: rgba(255, 92, 92, .28);
}

.product-card.out-of-stock-card .product-image {
  filter: grayscale(.75) brightness(.72);
}

.product-card.out-of-stock-card .product-glow {
  background: rgba(255, 66, 66, .18);
}

.product-badge.out-of-stock-badge,
.product-card .out-of-stock-link {
  color: #ff7777;
}

.product-card .out-of-stock-link {
  pointer-events: none;
  font-weight: 900;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.product-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 245px;
  margin: 10px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(140,170,195,.10);
  border-radius: 16px;
  background:
    radial-gradient(
      ellipse at 50% 85%,
      rgba(7,110,200,.17),
      transparent 35%
    ),
    #020304;
}

.product-glow {
  position: absolute;
  bottom: 15px;
  width: 130px;
  height: 35px;
  border-radius: 50%;
  background: rgba(7,140,255,.25);
  filter: blur(15px);
}

.product-ring {
  position: absolute;
  width: 165px;
  height: 165px;
  border: 1px solid rgba(88,185,255,.10);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.product-image {
  position: relative;
  z-index: 3;
  max-width: 155px;
  max-height: 205px;
  object-fit: contain;
  border-radius: 8px;
  filter:
    brightness(.96)
    contrast(1.05)
    drop-shadow(0 18px 25px rgba(0,0,0,.65));
}

/* The GLP-3RT artwork is square; crop its side padding so the vial matches
   the visual height of the portrait product artwork. */
.product-image.glp3rt-card-image {
  width: 155px;
  height: 205px;
  object-fit: cover;
  object-position: center;
}

.product-card h3,
.catalog-card h3 {
  min-height: 45px;
  margin: auto 0 10px;
  font-size: 18px;
  text-transform: uppercase;
}

.new-products-section {
  padding-top: 45px;
  border-top: 1px solid rgba(88,185,255,.08);
  background:
    radial-gradient(circle at 50% 20%,rgba(7,140,255,.055),transparent 34%);
}

.catalog-card .product-card-inner {
  cursor: default;
}

.product-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 31px;
  padding: 7px 12px;
  color: #8ed0ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border: 1px solid rgba(88,185,255,.30);
  border-radius: 100px;
  background: rgba(7,140,255,.08);
  box-shadow: 0 0 18px rgba(7,140,255,.07);
}

.price-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.old-price {
  position: relative;
  color: #77848e;
  font-size: 17px;
  font-weight: 800;
}

.old-price::after {
  content: "";
  position: absolute;
  left: -4px;
  top: 50%;
  width: calc(100% + 8px);
  height: 2px;
  background:
    linear-gradient(
      90deg,
      #58b9ff,
      #ffffff,
      #078cff
    );
}

.sale-price {
  font-size: 25px;
  font-weight: 950;
}

.sale-price::after {
  content: " USD";
  color: #758491;
  font-size: 8px;
}

.affiliate-price {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  color: #8fd5ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  border: 1px solid rgba(88,185,255,.28);
  border-radius: 7px;
  background: rgba(7,140,255,.09);
}

.product-card a {
  color: #58b9ff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
}


/* AFFILIATES */

.affiliate-section {
  scroll-margin-top: 80px;
  overflow: hidden;
  border-top: 1px solid rgba(88,185,255,.10);
  border-bottom: 1px solid rgba(88,185,255,.10);
  background:
    radial-gradient(
      circle at 80% 30%,
      rgba(7,140,255,.12),
      transparent 28%
    ),
    radial-gradient(
      circle at 10% 80%,
      rgba(88,185,255,.05),
      transparent 28%
    ),
    linear-gradient(
      135deg,
      #010203,
      #05080c 50%,
      #000000
    );
}

.affiliate-hero {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  gap: 70px;
  padding: 30px 0 75px;
}

.affiliate-copy {
  max-width: 730px;
}

.affiliate-copy h2 {
  margin: 0;
  font-family: "Teko", Arial, sans-serif;
  font-size: clamp(70px,9vw,125px);
  font-style: italic;
  font-weight: 700;
  letter-spacing: -3px;
  line-height: .76;
  text-transform: uppercase;
}

.affiliate-copy h2 span {
  color: #58b9ff;
  text-shadow: 0 0 30px rgba(7,140,255,.35);
}

.affiliate-intro {
  max-width: 660px;
  margin: 35px 0 0;
  color: #a6b2bc;
  font-size: 16px;
  line-height: 1.8;
}

.affiliate-buttons {
  margin-top: 30px;
}

.affiliate-money-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 45px;
  text-align: center;
  overflow: hidden;
  border: 1px solid rgba(88,185,255,.25);
  border-radius: 28px;
  background:
    radial-gradient(
      circle at 50% 25%,
      rgba(7,140,255,.18),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      #0b1015,
      #010203
    );
}

.affiliate-money-icon {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 115px;
  height: 115px;
  margin-bottom: 30px;
  color: #ffffff;
  font-size: 58px;
  font-weight: 900;
  border: 1px solid rgba(88,185,255,.4);
  border-radius: 50%;
  background:
    linear-gradient(
      135deg,
      #078cff,
      #034f91
    );
  box-shadow: 0 0 45px rgba(7,140,255,.25);
}

.affiliate-money-card p {
  margin: 0 0 8px;
  color: #58b9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.affiliate-money-card h3 {
  margin: 0 0 15px;
  font-size: 31px;
  text-transform: uppercase;
}

.affiliate-money-card span {
  max-width: 300px;
  color: #8d9aa5;
  font-size: 13px;
  line-height: 1.7;
}

.affiliate-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 18px;
  scroll-margin-top: 110px;
}

.affiliate-step {
  min-height: 275px;
  padding: 28px;
  border: 1px solid rgba(140,170,195,.13);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      #0a0e13,
      #010203
    );
  transition: .3s;
}

.affiliate-step:hover {
  transform: translateY(-7px);
  border-color: rgba(88,185,255,.35);
}

.affiliate-step-number {
  color: #58b9ff;
  font-family: "Teko", sans-serif;
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
}

.affiliate-step h3 {
  margin: 40px 0 12px;
  font-size: 18px;
  text-transform: uppercase;
}

.affiliate-step p {
  margin: 0;
  color: #8e9ca7;
  font-size: 13px;
  line-height: 1.7;
}

.affiliate-growth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  margin-top: 70px;
  padding: 50px;
  border: 1px solid rgba(88,185,255,.13);
  border-radius: 22px;
  background:
    linear-gradient(
      135deg,
      rgba(7,140,255,.05),
      rgba(3,5,7,.8)
    );
}

.affiliate-growth h3 {
  margin: 0;
  font-size: clamp(38px,5vw,60px);
  letter-spacing: -2px;
  line-height: .95;
  text-transform: uppercase;
}

.affiliate-growth h3 span {
  display: block;
  color: #58b9ff;
}

.affiliate-growth > p {
  margin: 0;
  color: #9eabb5;
  line-height: 1.8;
}

.affiliate-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 30px;
  padding: 35px 40px;
  border: 1px solid rgba(88,185,255,.2);
  border-radius: 18px;
  background:
    linear-gradient(
      100deg,
      rgba(7,140,255,.12),
      #05080b 55%,
      #010203
    );
}

.affiliate-cta p {
  margin: 0 0 6px;
  color: #58b9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.affiliate-cta h3 {
  margin: 0;
  font-size: clamp(24px,3vw,38px);
  text-transform: uppercase;
}


/* QUALITY */

.quality-section {
  border-top: 1px solid rgba(140,170,195,.08);
  border-bottom: 1px solid rgba(140,170,195,.08);
}

.quality-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.quality-visual {
  display: grid;
  place-items: center;
}

.quality-core {
  display: grid;
  place-items: center;
  width: min(390px,100%);
  aspect-ratio: 1;
  border: 1px solid rgba(88,185,255,.15);
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(7,110,200,.12),
      transparent 58%
    ),
    #020304;
}

.quality-core strong {
  display: block;
  font-size: 70px;
  text-align: center;
}

.quality-core span {
  display: block;
  color: #58b9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.quality-list {
  display: grid;
  gap: 15px;
}

.quality-item {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 16px;
  padding: 20px;
  border: 1px solid rgba(140,170,195,.13);
  border-radius: 15px;
  background:
    linear-gradient(
      145deg,
      #0b0e12,
      #020304
    );
}

.quality-item > strong {
  display: grid;
  place-items: center;
  width: 55px;
  height: 55px;
  color: #58b9ff;
  border: 1px solid rgba(88,185,255,.18);
  border-radius: 13px;
}

.quality-item h3 {
  margin: 2px 0 7px;
  font-size: 15px;
  text-transform: uppercase;
}

.quality-item p {
  margin: 0;
  color: #929faa;
  font-size: 12px;
  line-height: 1.6;
}


/* INFORMATION */

.information-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.information-card {
  min-height: 240px;
  padding: 30px;
  border: 1px solid rgba(140,170,195,.13);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      #0b0e12,
      #010203
    );
}

.information-card > strong {
  color: #58b9ff;
  font-size: 28px;
}

.information-card h3 {
  margin: 35px 0 12px;
  font-size: 19px;
  text-transform: uppercase;
}

.information-card p {
  color: #929faa;
  font-size: 13px;
  line-height: 1.7;
}


/* FOOTER */

footer {
  margin-top: 70px;
  padding-top: 60px;
  border-top: 1px solid rgba(140,170,195,.08);
  background: #000;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.3fr .8fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}

.footer-layout > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-layout h3 {
  margin: 0 0 8px;
  font-size: 12px;
  text-transform: uppercase;
}

.footer-layout a {
  color: #929faa;
  font-size: 12px;
}

.footer-layout a:hover {
  color: #58b9ff;
}

.footer-contact-button {
  width: fit-content;
  margin: 0;
  padding: 0;
  color: #929faa;
  font: inherit;
  font-size: 12px;
  text-align: left;
  border: 0;
  background: transparent;
  cursor: pointer;
  transition: color .2s ease;
}

.footer-contact-button:hover {
  color: #58b9ff;
}

.footer-description {
  max-width: 450px;
  color: #929faa;
  font-size: 13px;
  line-height: 1.7;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  color: #6e7c87;
  font-size: 10px;
  border-top: 1px solid rgba(140,170,195,.07);
}


/* CONTACT MODAL */

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 60000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
}

.contact-modal.open {
  display: flex;
}

.contact-modal[aria-hidden="true"] {
  display: none !important;
  pointer-events: none !important;
}

.contact-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(14px);
}

.contact-card {
  position: relative;
  z-index: 2;
  width: min(520px,100%);
  padding: 48px 38px 34px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(88,185,255,.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%,rgba(20,137,230,.18),transparent 42%),
    linear-gradient(145deg,#0a0f15,#030507 72%);
  box-shadow:
    0 30px 90px rgba(0,0,0,.75),
    0 0 45px rgba(7,140,255,.12),
    inset 0 1px 0 rgba(255,255,255,.04);
  animation: contactCardIn .25s ease-out;
}

.contact-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 12%;
  width: 76%;
  height: 1px;
  background: linear-gradient(90deg,transparent,#58b9ff,transparent);
  box-shadow: 0 0 18px rgba(88,185,255,.7);
}

@keyframes contactCardIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.contact-close {
  position: absolute;
  top: 15px;
  right: 17px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: #aebbc5;
  font-size: 25px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: .2s ease;
}

.contact-close:hover {
  color: #ffffff;
  border-color: rgba(88,185,255,.55);
  background: rgba(88,185,255,.10);
  transform: rotate(90deg);
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  color: #ffffff;
  font-size: 24px;
  border: 1px solid rgba(88,185,255,.48);
  border-radius: 16px;
  background: linear-gradient(145deg,rgba(30,151,245,.22),rgba(3,35,60,.3));
  box-shadow: 0 0 28px rgba(7,140,255,.18);
}

.contact-label {
  margin: 0 0 7px;
  color: #58b9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.contact-card h2 {
  margin: 0;
  color: #ffffff;
  font-family: "Teko",Arial,sans-serif;
  font-size: 48px;
  line-height: .95;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.contact-intro {
  margin: 12px 0 24px;
  color: #9ba8b2;
  font-size: 13px;
  line-height: 1.6;
}

.contact-options {
  display: grid;
  gap: 12px;
}

.contact-option {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 13px;
  min-height: 74px;
  padding: 13px 17px;
  text-align: left;
  border: 1px solid rgba(150,180,202,.14);
  border-radius: 13px;
  background: rgba(255,255,255,.025);
  transition: .22s ease;
}

.contact-option:hover {
  border-color: rgba(88,185,255,.48);
  background: rgba(27,130,210,.10);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}

.contact-option-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #58b9ff;
  font-size: 21px;
  font-weight: 900;
  border: 1px solid rgba(88,185,255,.28);
  border-radius: 11px;
  background: rgba(7,140,255,.08);
}

.contact-option-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-option-copy strong {
  color: #ffffff;
  font-size: 13px;
  letter-spacing: .5px;
}

.contact-option-copy small {
  overflow: hidden;
  color: #8d9aa5;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-arrow {
  color: #58b9ff;
  font-size: 19px;
  transition: transform .2s ease;
}

.contact-option:hover .contact-arrow {
  transform: translateX(4px);
}

.contact-note {
  margin: 20px 0 0;
  color: #65737e;
  font-size: 10px;
  letter-spacing: .5px;
}

@media (max-width: 520px) {
  .contact-modal {
    padding: 15px;
  }

  .contact-card {
    padding: 43px 18px 26px;
    border-radius: 18px;
  }

  .contact-card h2 {
    font-size: 42px;
  }

  .contact-option {
    grid-template-columns: 40px 1fr auto;
    padding: 12px;
  }

  .contact-option-icon {
    width: 40px;
    height: 40px;
  }
}


/* AFFILIATE MODAL */

.affiliate-modal {
  position: fixed;
  inset: 0;
  z-index: 61000;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 24px;
}

.affiliate-modal.open {
  display: flex;
}

.affiliate-modal[aria-hidden="true"] {
  display: none !important;
  pointer-events: none !important;
}

.affiliate-modal-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 50% 25%,rgba(7,140,255,.14),transparent 34%),
    rgba(0,0,0,.93);
  backdrop-filter: blur(16px);
}

.affiliate-modal-card {
  position: relative;
  z-index: 2;
  width: min(650px,100%);
  padding: 42px 46px 34px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(88,185,255,.30);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%,rgba(11,125,216,.25),transparent 39%),
    radial-gradient(circle at 100% 100%,rgba(88,185,255,.08),transparent 35%),
    linear-gradient(145deg,#0b1016,#020304 70%);
  box-shadow:
    0 35px 110px rgba(0,0,0,.85),
    0 0 65px rgba(7,140,255,.15),
    inset 0 1px 0 rgba(255,255,255,.05);
  animation: affiliateModalIn .3s cubic-bezier(.2,.75,.25,1);
}

.affiliate-modal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg,transparent,#078cff,#b8e5ff,#078cff,transparent);
  box-shadow: 0 0 24px rgba(88,185,255,.9);
}

.affiliate-modal-card::after {
  content: "$";
  position: absolute;
  right: -18px;
  bottom: -75px;
  color: rgba(88,185,255,.035);
  font-family: "Teko",Arial,sans-serif;
  font-size: 290px;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.affiliate-modal-shine {
  position: absolute;
  top: -80px;
  left: -120px;
  width: 210px;
  height: 700px;
  opacity: .14;
  background: linear-gradient(90deg,transparent,#58b9ff,transparent);
  filter: blur(10px);
  transform: rotate(24deg);
  animation: affiliateShine 4.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes affiliateModalIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.965);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes affiliateShine {
  0%,45% {
    left: -180px;
  }

  75%,100% {
    left: calc(100% + 80px);
  }
}

.affiliate-modal-close {
  position: absolute;
  top: 16px;
  right: 17px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  color: #a9b7c1;
  font-size: 26px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 50%;
  background: rgba(255,255,255,.035);
  cursor: pointer;
  transition: .2s ease;
}

.affiliate-modal-close:hover {
  color: #ffffff;
  border-color: rgba(88,185,255,.58);
  background: rgba(88,185,255,.10);
  transform: rotate(90deg);
}

.affiliate-modal-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin-bottom: 16px;
  padding: 6px 13px;
  color: #bce6ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  border: 1px solid rgba(88,185,255,.28);
  border-radius: 100px;
  background: rgba(7,140,255,.08);
}

.affiliate-modal-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: #58b9ff;
  box-shadow: 0 0 10px #078cff;
}

.affiliate-instagram-mark {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin: 0 auto 15px;
  color: #ffffff;
  font-size: 31px;
  font-weight: 900;
  border: 1px solid rgba(88,185,255,.5);
  border-radius: 18px;
  background: linear-gradient(145deg,#078cff,#034f91);
  box-shadow: 0 0 35px rgba(7,140,255,.27);
}

.affiliate-modal-label {
  position: relative;
  z-index: 2;
  margin: 0 0 8px;
  color: #58b9ff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.affiliate-modal-card h2 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #ffffff;
  font-family: "Teko",Arial,sans-serif;
  font-size: clamp(48px,8vw,68px);
  font-style: italic;
  line-height: .82;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.affiliate-modal-card h2 span {
  display: block;
  color: #58b9ff;
  text-shadow: 0 0 28px rgba(7,140,255,.35);
}

.affiliate-modal-intro {
  position: relative;
  z-index: 2;
  max-width: 525px;
  margin: 20px auto 22px;
  color: #a1aeb8;
  font-size: 13px;
  line-height: 1.7;
}

.affiliate-modal-perks {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(140,170,195,.13);
  border-radius: 14px;
  background: rgba(255,255,255,.02);
}

.affiliate-modal-perks > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
}

.affiliate-modal-perks > div + div {
  border-left: 1px solid rgba(140,170,195,.12);
}

.affiliate-modal-perks strong {
  color: #58b9ff;
  font-family: "Teko",Arial,sans-serif;
  font-size: 28px;
  line-height: 1;
}

.affiliate-modal-perks span {
  color: #d5dce1;
  font-size: 9px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: .5px;
  text-align: left;
  text-transform: uppercase;
}

.affiliate-dm-callout {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  margin-bottom: 14px;
  padding: 14px 18px;
  text-align: left;
  border-left: 3px solid #078cff;
  border-radius: 0 10px 10px 0;
  background: linear-gradient(90deg,rgba(7,140,255,.12),rgba(7,140,255,.025));
}

.affiliate-dm-callout span {
  color: #58b9ff;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.affiliate-dm-callout strong {
  color: #ffffff;
  font-size: 14px;
  letter-spacing: .2px;
}

.affiliate-instagram-button {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  width: 100%;
  min-height: 67px;
  padding: 12px 20px;
  color: #ffffff;
  text-align: left;
  border: 1px solid #159bff;
  border-radius: 13px;
  background: linear-gradient(135deg,#078cff,#045ca7 70%,#033d70);
  box-shadow: 0 12px 30px rgba(7,140,255,.18),inset 0 1px 0 rgba(255,255,255,.15);
  transition: .22s ease;
}

.affiliate-instagram-button:hover {
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 17px 38px rgba(7,140,255,.28),0 0 28px rgba(7,140,255,.12);
}

.affiliate-button-icon {
  font-size: 29px;
  font-weight: 900;
}

.affiliate-instagram-button > span:last-child {
  display: grid;
  gap: 2px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .8px;
  text-transform: uppercase;
}

.affiliate-instagram-button small {
  color: rgba(255,255,255,.72);
  font-size: 8px;
  letter-spacing: 1.1px;
}

.affiliate-modal-note {
  position: relative;
  z-index: 2;
  margin: 14px 0 0;
  color: #64727d;
  font-size: 9px;
}

@media (max-width: 600px) {
  .affiliate-modal {
    align-items: flex-start;
    padding: 14px;
  }

  .affiliate-modal-card {
    margin: auto 0;
    padding: 42px 18px 25px;
    border-radius: 19px;
  }

  .affiliate-modal-card h2 {
    font-size: 50px;
  }

  .affiliate-modal-intro {
    margin-top: 17px;
    font-size: 12px;
  }

  .affiliate-modal-perks {
    grid-template-columns: 1fr;
  }

  .affiliate-modal-perks > div {
    justify-content: flex-start;
    min-height: 52px;
    padding: 9px 18px;
  }

  .affiliate-modal-perks > div + div {
    border-top: 1px solid rgba(140,170,195,.12);
    border-left: 0;
  }
}


/* PRODUCT MODAL */

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 50000;
  display: none;
  overflow-y: auto;
  padding: 30px;
}

.product-modal.open {
  display: block;
}

.product-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  backdrop-filter: blur(15px);
}

.product-page {
  position: relative;
  z-index: 2;
  width: min(1180px,100%);
  min-height: 680px;
  margin: 20px auto;
  overflow: hidden;
  border: 1px solid rgba(88,185,255,.20);
  border-radius: 24px;
  background:
    radial-gradient(
      circle at 20% 40%,
      rgba(0,90,180,.15),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      #080b0f,
      #000 65%
    );
}

.product-close {
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 10;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  color: #fff;
  font-size: 30px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  background: rgba(0,0,0,.75);
}

.product-page-layout {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 680px;
}

.single-product-viewer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 680px;
  padding: 55px;
  overflow: hidden;
  background:
    radial-gradient(
      ellipse at 50% 85%,
      rgba(7,105,200,.24),
      transparent 38%
    ),
    #000;
}

.single-product-glow {
  position: absolute;
  bottom: 70px;
  width: 300px;
  height: 60px;
  border-radius: 50%;
  background: rgba(7,130,255,.20);
  filter: blur(30px);
}

.single-product-image {
  position: relative;
  z-index: 2;
  max-width: 430px;
  max-height: 560px;
  object-fit: contain;
  border-radius: 14px;
}

.single-product-caption {
  position: absolute;
  bottom: 25px;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  padding: 8px 15px;
  color: #98a6b1;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  border: 1px solid rgba(88,185,255,.15);
  border-radius: 30px;
  background: rgba(0,0,0,.72);
}

.product-information {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 55px;
  border-left: 1px solid rgba(140,170,195,.10);
  background:
    linear-gradient(
      180deg,
      rgba(8,11,15,.94),
      rgba(0,0,0,.98)
    );
}

.product-page-label {
  margin: 0 0 12px;
  color: #58b9ff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.product-information h1 {
  margin: 0 0 17px;
  font-size: clamp(58px,8vw,92px);
  font-weight: 950;
  letter-spacing: -5px;
  line-height: .9;
}

.product-strength {
  width: fit-content;
  margin-bottom: 22px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  border: 1px solid rgba(88,185,255,.28);
  border-radius: 8px;
  background: rgba(7,110,200,.10);
}

.product-page-pricing {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 13px;
}

.product-page-old-price {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  color: #8fd5ff;
  font-size: 14px;
  font-weight: 900;
  border: 1px solid rgba(88,185,255,.28);
  border-radius: 8px;
  background: rgba(7,140,255,.09);
}

.product-page-old-price::after {
  content: none;
}

.product-page-sale-price {
  font-size: 42px;
  font-weight: 950;
}

.sale-message {
  width: fit-content;
  margin-bottom: 24px;
  padding: 8px 12px;
  color: #70c2ff;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  border: 1px solid rgba(88,185,255,.22);
  border-radius: 7px;
  background: rgba(7,100,180,.08);
}

.product-description-box,
.research-notice {
  margin-bottom: 15px;
  padding: 18px;
  border: 1px solid rgba(140,170,195,.14);
  border-radius: 13px;
  background: #07090c;
}

.product-description-box strong,
.research-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-description-box p,
.research-notice p {
  margin: 0;
  color: #aab6bf;
  font-size: 13px;
  line-height: 1.7;
}

.quantity-label {
  margin-bottom: 10px;
  color: #aeb9c1;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.quantity-row {
  display: grid;
  grid-template-columns: 48px 70px 48px;
  width: fit-content;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid rgba(140,170,195,.18);
  border-radius: 10px;
}

.quantity-button,
.quantity-row input {
  height: 48px;
  color: #fff;
  text-align: center;
  border: 0;
  background: #07090c;
}

.quantity-row input {
  width: 70px;
}

.add-cart-button {
  min-height: 55px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  border: 1px solid #078cff;
  border-radius: 10px;
  background:
    linear-gradient(
      135deg,
      #078cff,
      #034d8e
    );
}

.add-cart-button:disabled,
.quantity-button:disabled,
.quantity-row input:disabled {
  cursor: not-allowed;
  opacity: .55;
}

.add-cart-button:disabled {
  border-color: rgba(255, 92, 92, .45);
  background: linear-gradient(135deg, #752828, #3d1111);
}

.cart-message {
  min-height: 18px;
  margin-top: 11px;
  color: #58b9ff;
  text-align: center;
}

.back-products-button {
  min-height: 45px;
  margin-top: 5px;
  color: #94a2ae;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  border: 0;
  background: transparent;
}


/* ANIMATIONS */

.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes beamMove {
  from {
    transform:
      translateX(-80px)
      rotate(18deg);
  }

  to {
    transform:
      translateX(100px)
      rotate(18deg);
  }
}


/* TABLET */

@media (max-width:1080px) {
  .product-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .affiliate-steps {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width:950px) {
  #mainMenu {
    position: absolute;
    top: 84px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    padding: 15px;
    border: 1px solid rgba(140,170,195,.15);
    border-radius: 14px;
    background: #020304;
  }

  #mainMenu.open {
    display: flex;
  }

  #mainMenu a {
    width: 100%;
    padding: 14px;
  }

  .menu-button {
    display: block;
  }

  .header-actions {
    display: flex;
    align-items: center;
    margin-left: auto;
  }

  .header-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 13px;
    color: #fff;
    border: 1px solid rgba(88,185,255,.32);
    border-radius: 10px;
    background: rgba(7,140,255,.10);
    touch-action: manipulation;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background-size: cover;
    background-position: 70% center;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: 700px;
  }

  .hero-visual {
    display: none;
  }

  .affiliate-hero {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .affiliate-money-card {
    min-height: 320px;
  }

  .quality-layout {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width:850px) {
  .product-modal {
    padding: 12px;
  }

  .product-page-layout {
    grid-template-columns: 1fr;
  }

  .single-product-viewer {
    min-height: 520px;
    padding: 40px 25px;
  }

  .single-product-image {
    max-width: 390px;
    max-height: 470px;
  }

  .product-information {
    padding: 50px 28px;
    border-left: 0;
  }
}


/* MOBILE */

@media (max-width:600px) {
  .container {
    width: calc(100% - 22px);
  }

  .header-logo {
    width: 120px;
  }

  .home-contact-button {
    top: 18px;
    left: 11px;
    min-height: 35px;
    padding: 8px 12px;
    font-size: 9px;
  }

  .hero {
    min-height: 700px;
  }

  .hero::before {
    background-size: cover;
    background-position: 72% center;
  }

  .hero::after {
    background:
      linear-gradient(
        180deg,
        rgba(0,0,0,.20),
        rgba(0,0,0,.40) 35%,
        rgba(0,0,0,.94) 82%,
        #000
      );
  }

  .hero-layout {
    min-height: 700px;
    align-items: end;
    padding: 75px 0 45px;
  }

  .hero h1 {
    font-size: clamp(70px,21vw,100px);
  }

  .hero-buttons,
  .affiliate-buttons {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 75px 0;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-copy h2 {
    font-size: clamp(66px,20vw,95px);
  }

  .affiliate-steps {
    grid-template-columns: 1fr;
  }

  .affiliate-growth {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 25px;
  }

  .affiliate-cta {
    flex-direction: column;
    align-items: stretch;
    padding: 30px 22px;
  }

  .age-buttons {
    flex-direction: column;
  }

  .information-grid {
    grid-template-columns: 1fr;
  }

  .footer-layout {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width:500px) {
  .single-product-viewer {
    min-height: 430px;
  }

  .single-product-image {
    max-width: 315px;
    max-height: 380px;
  }

  .product-information {
    padding: 45px 20px;
  }
}


/* =========================================================
   FINAL RESPONSIVE OVERRIDES
   Keeps every page, card, menu, and modal comfortable on phones.
   ========================================================= */

@media (max-width: 700px) {
  html {
    scroll-padding-top: 70px;
  }

  body {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .container {
    width: calc(100% - 28px);
  }

  .navigation {
    min-height: 68px;
    gap: 8px;
  }

  .header-logo {
    width: 128px;
    max-height: 58px;
  }

  .site-header .navigation {
    width: calc(100% - 20px);
  }

  .header-actions {
    flex: 0 0 auto;
  }

  .header-actions a {
    min-width: 67px;
    min-height: 44px;
    padding: 0 9px;
    font-size: 9px;
    letter-spacing: .65px;
  }

  .menu-button {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 24px;
    border: 1px solid rgba(140,170,195,.15);
    border-radius: 10px;
    background: #070a0e;
  }

  #mainMenu {
    top: 68px;
    left: 10px;
    right: 10px;
    max-height: calc(100svh - 80px);
    gap: 2px;
    padding: 10px;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 24px 60px rgba(0,0,0,.82);
  }

  #mainMenu a {
    min-height: 44px;
    padding: 14px 12px;
    font-size: 10px;
    border-radius: 8px;
  }

  #mainMenu a:active {
    background: rgba(7,140,255,.12);
  }

  .hero,
  .hero-layout {
    min-height: min(720px, calc(100svh - 68px));
  }

  .hero {
    isolation: isolate;
  }

  .hero::before {
    background-size: 100% auto;
    background-position: center 38px;
  }

  .hero::after {
    background:
      linear-gradient(180deg,rgba(0,0,0,.03),rgba(0,0,0,.12) 30%,rgba(0,0,0,.78) 55%,#000 78%),
      linear-gradient(90deg,rgba(0,0,0,.14),transparent 50%,rgba(0,0,0,.08));
  }

  .hero-layout {
    align-items: end;
    padding: 84px 0 38px;
  }

  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .home-contact-button {
    top: 14px;
    left: 14px;
    min-height: 34px;
    max-width: calc(100% - 28px);
    padding: 8px 11px;
    font-size: 8px;
  }

  .section-label {
    margin-bottom: 8px;
    font-size: 9px;
    letter-spacing: 2px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(38px, 11.5vw, 54px);
    letter-spacing: -1.5px;
    line-height: .96;
  }

  .hero h1::before {
    bottom: -17px;
    width: 130px;
    height: 3px;
  }

  .hero-buttons,
  .affiliate-buttons {
    gap: 10px;
    margin-top: 39px;
  }

  .button {
    min-height: 49px;
    padding: 12px 18px;
    font-size: 10px;
  }

  .hero-badges {
    gap: 9px 15px;
    margin-top: 20px;
  }

  .hero-badges span {
    font-size: 8px;
  }

  .hero-badges span::before {
    width: 6px;
    height: 6px;
    margin-right: 6px;
  }

  .moving-items span {
    min-height: 56px;
    padding: 0 18px;
    font-size: 9px;
  }

  .moving-items span::before {
    margin-right: 11px;
  }

  .section {
    padding: 62px 0;
  }

  .product-group {
    padding-top: 18px;
    scroll-margin-top: 78px;
  }

  .product-group + .product-group {
    margin-top: 52px;
    padding-top: 58px;
  }

  .section-heading {
    margin-bottom: 27px;
  }

  .section-heading h2 {
    font-size: clamp(36px, 12vw, 52px);
    letter-spacing: -1.5px;
    line-height: .96;
  }

  .product-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .product-card,
  .catalog-card {
    min-width: 0;
  }

  .product-card-inner {
    min-height: 0;
    padding: 17px;
    border-radius: 16px;
  }

  .product-visual {
    height: 220px;
    margin: 9px 0 17px;
    border-radius: 13px;
  }

  .product-image {
    max-width: 145px;
    max-height: 188px;
  }

  .product-card h3,
  .catalog-card h3 {
    min-height: 0;
    margin: 0 0 9px;
    font-size: 17px;
  }

  .price-row {
    margin-bottom: 15px;
  }

  .affiliate-hero {
    gap: 30px;
    padding: 5px 0 48px;
  }

  .affiliate-copy,
  .affiliate-intro {
    max-width: 100%;
  }

  .affiliate-copy h2 {
    font-size: clamp(55px, 18vw, 78px);
    letter-spacing: -1.5px;
    line-height: .78;
  }

  .affiliate-intro {
    margin-top: 24px;
    font-size: 14px;
    line-height: 1.65;
  }

  .affiliate-money-card {
    min-height: 275px;
    padding: 26px 20px;
    border-radius: 20px;
  }

  .affiliate-money-icon {
    width: 82px;
    height: 82px;
    margin-bottom: 20px;
    font-size: 41px;
  }

  .affiliate-money-card h3 {
    font-size: 25px;
  }

  .affiliate-steps {
    gap: 14px;
    scroll-margin-top: 78px;
  }

  .affiliate-step {
    min-height: 0;
    padding: 21px;
  }

  .affiliate-step-number {
    font-size: 42px;
  }

  .affiliate-step h3 {
    margin: 22px 0 9px;
  }

  .affiliate-growth {
    margin-top: 38px;
    padding: 25px 20px;
    border-radius: 17px;
  }

  .affiliate-growth h3 {
    font-size: clamp(34px, 11vw, 48px);
    letter-spacing: -1px;
  }

  .affiliate-growth > p {
    font-size: 14px;
    line-height: 1.65;
  }

  .affiliate-cta {
    gap: 20px;
    padding: 24px 20px;
  }

  .affiliate-cta h3 {
    font-size: 25px;
  }

  .quality-layout {
    gap: 34px;
  }

  .quality-core {
    width: min(270px, 78vw);
  }

  .quality-core strong {
    font-size: 52px;
  }

  .quality-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    padding: 15px;
  }

  .quality-item > strong {
    width: 44px;
    height: 44px;
  }

  .information-grid {
    gap: 14px;
  }

  .information-card {
    min-height: 0;
    padding: 22px;
  }

  .information-card h3 {
    margin: 23px 0 10px;
  }

  footer {
    margin-top: 30px;
    padding-top: 44px;
  }

  .footer-layout {
    gap: 31px;
    padding-bottom: 38px;
  }

  .footer-logo {
    width: 150px;
  }

  .footer-bottom {
    align-items: flex-start;
    gap: 9px;
    line-height: 1.5;
  }

  .age-gate {
    padding: 12px;
  }

  .age-card {
    padding: 24px 17px;
    border-radius: 18px;
  }

  .age-logo {
    width: min(190px, 66%);
    max-height: 135px;
  }

  .age-number {
    width: 68px;
    height: 68px;
    margin: 7px auto 15px;
    font-size: 27px;
  }

  .age-card h2 {
    font-size: 27px;
  }

  .age-card p {
    font-size: 13px;
    line-height: 1.55;
  }

  .age-warning {
    margin: 16px 0;
    padding: 12px;
    font-size: 11px;
    line-height: 1.5;
  }

  .age-buttons {
    gap: 9px;
  }

  .age-buttons button {
    width: 100%;
    min-height: 46px;
    padding: 10px 12px;
    font-size: 9px;
  }

  .contact-modal,
  .affiliate-modal {
    padding: 10px;
  }

  .contact-card,
  .affiliate-modal-card {
    width: 100%;
    padding: 38px 16px 22px;
    border-radius: 17px;
  }

  .contact-card h2 {
    font-size: 38px;
  }

  .affiliate-modal-card h2 {
    font-size: 44px;
    letter-spacing: -1px;
  }

  .contact-option {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px;
  }

  .contact-option-icon {
    width: 38px;
    height: 38px;
  }

  .product-modal {
    padding: 8px;
  }

  .product-page {
    min-height: 0;
    margin: 8px auto;
    border-radius: 17px;
  }

  .product-close {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 42px;
    font-size: 27px;
  }

  .product-page-layout {
    min-height: 0;
  }

  .single-product-viewer {
    min-height: 360px;
    padding: 44px 18px 48px;
  }

  .single-product-glow {
    bottom: 48px;
    width: 210px;
  }

  .single-product-image {
    max-width: min(255px, 76vw);
    max-height: 285px;
  }

  .single-product-caption {
    bottom: 15px;
    width: max-content;
    max-width: calc(100% - 28px);
    text-align: center;
    white-space: normal;
  }

  .product-information {
    padding: 32px 17px 27px;
  }

  .product-information h1 {
    overflow-wrap: anywhere;
    font-size: clamp(42px, 14vw, 62px);
    letter-spacing: -2px;
  }

  .product-page-pricing {
    flex-wrap: wrap;
    gap: 12px;
  }

  .product-page-old-price {
    font-size: 19px;
  }

  .product-page-sale-price {
    font-size: 34px;
  }

  .product-description-box,
  .research-notice {
    padding: 14px;
  }

  .quantity-row {
    grid-template-columns: 46px 64px 46px;
  }

  .quantity-button,
  .quantity-row input {
    height: 46px;
  }

  .quantity-row input {
    width: 64px;
  }

  .add-cart-button {
    min-height: 50px;
  }

  .peak-cart-header {
    padding: max(14px, env(safe-area-inset-top)) 16px 14px !important;
  }

  .peak-cart-items {
    min-height: 116px !important;
    padding: 4px 14px !important;
    overscroll-behavior: contain;
  }

  .peak-cart-item {
    grid-template-columns: 64px minmax(0, 1fr) !important;
    gap: 11px !important;
    padding: 13px 0 !important;
  }

  .peak-cart-item-image {
    width: 64px !important;
    height: 74px !important;
  }

  .peak-cart-item-image img {
    max-width: 57px !important;
    max-height: 66px !important;
  }

  .peak-cart-item-top {
    gap: 8px !important;
  }

  .peak-cart-item-name {
    overflow-wrap: anywhere;
    font-size: 11px !important;
  }

  .peak-cart-item-price {
    flex: 0 0 auto;
    font-size: 12px !important;
  }

  .peak-cart-item-controls {
    display: grid !important;
    grid-template-columns: 44px 30px 44px minmax(70px, 1fr);
    gap: 7px !important;
    width: 100%;
    margin-top: 10px !important;
  }

  .peak-cart-qty-button {
    width: 44px !important;
    height: 44px !important;
    font-size: 18px !important;
    touch-action: manipulation;
  }

  .peak-cart-qty {
    display: grid;
    place-items: center;
    min-width: 30px !important;
  }

  .peak-cart-remove {
    min-width: 70px;
    min-height: 44px;
    margin-left: 0 !important;
    padding: 0 10px;
    color: #dce9f3 !important;
    font-size: 10px !important;
    border: 1px solid rgba(255,255,255,.16) !important;
    border-radius: 8px;
    background: rgba(255,255,255,.045) !important;
    touch-action: manipulation;
  }

  .peak-cart-checkout {
    max-height: 62dvh;
    overflow-y: auto;
    padding: 12px 14px max(14px, env(safe-area-inset-bottom)) !important;
    overscroll-behavior: contain;
  }

  .peak-free-shipping {
    padding: 11px 12px !important;
  }

  .peak-free-shipping strong {
    font-size: 12px !important;
  }

  .peak-promo-row {
    grid-template-columns: minmax(0, 1fr) 78px !important;
  }
}

@media (max-width: 380px) {
  .container {
    width: calc(100% - 20px);
  }

  .header-logo {
    width: 108px;
  }

  .header-actions a {
    min-width: 61px;
    padding: 0 7px;
  }

  .hero h1 {
    font-size: clamp(34px, 10.8vw, 46px);
  }

  .hero-badges {
    display: grid;
    gap: 8px;
  }

  .product-visual {
    height: 205px;
  }

  .affiliate-copy h2 {
    font-size: clamp(50px, 17vw, 65px);
  }

  .contact-option-copy strong {
    font-size: 11px;
  }

  .contact-option-copy small {
    font-size: 9px;
  }

  .peak-promo-row {
    grid-template-columns: 1fr !important;
  }
}

@media (hover: none) and (pointer: coarse) {
  .button:hover,
  .product-card-inner:hover,
  .affiliate-step:hover,
  .home-contact-button:hover,
  .affiliate-instagram-button:hover {
    transform: none;
  }
}
