*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --ink: #10161d;
  --ink-soft: #5e6670;
  --paper: #f4f2ee;
  --paper-strong: #ffffff;
  --line: #e7e2da;
  --gold: #f1b929;
  --gold-deep: #d69a0e;
  --green: #11b67a;
  --slate: #20262f;
  --night: #1c222a;
  --shadow: 0 18px 40px rgba(16, 22, 29, 0.09);
  --section-space: clamp(58px, 7vw, 94px);
  --section-gap: clamp(20px, 2.5vw, 30px);
  --container-inline: clamp(15px, 2vw, 30px);
    --bg:           #0d0d0d;


      --gold-hover:   #ffd700;
      --bg:           #0d0d0d;
      --card-bg:      #1a1a1a;
      --card-border:  #2a2a2a;
      --font-heading: 'Barlow Condensed', sans-serif;
      --font-body:    'Outfit', 'Segoe UI', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: "Outfit", "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.site-header {
  position: relative;
  z-index: 20;
}

.page-shell {
  overflow: clip;
}

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

button,
input {
  font: inherit;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.container {
  width: min(1360px, calc(100% - (var(--container-inline) * 2)));
  margin: 0 auto;
}

.section {
  padding: var(--section-space) 0 0;
}

.section--logos {
  padding-bottom: var(--section-space);
}

.topbar {
  background: var(--slate);
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
}

.topbar__inner,
.navband__inner,
.benefits__inner,
.contact-band__inner,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__inner {
  min-height: 48px;
  justify-content: center;
}

.topbar p {
  margin: 0;
  text-align: center;
}

.topbar strong {
  color: #fff;
}

.topbar__links {
  display: flex;
  gap: 0;
  font-size: 14px;
}

.topbar__links a {
  display: inline-flex;
  align-items: center;
  opacity: 0.88;
  transition: opacity 0.2s ease;
}

.topbar__links a + a::before {
  content: "\2022";
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.52);
}

.topbar__links a:hover,
.mainnav__link:hover {
  opacity: 1;
}

.navband {
  background: var(--gold);
  border-bottom: 1px solid rgba(16, 22, 29, 0.08);
}

.navband__inner {
  min-height: 72px;
  gap: 0;
  flex-wrap: nowrap;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 0 0 252px;
  min-height: 72px;
  padding: 0 16px;
  border-right: 1px solid rgba(16, 22, 29, 0.08);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand__mark {
  position: relative;
  width: 22px;
  height: 22px;
  border: 3px solid var(--ink);
  border-radius: 5px;
  transform: skewX(-12deg);
}

.brand__mark::before {
  content: "";
  position: absolute;
  inset: 4px;
  background: var(--ink);
  clip-path: polygon(30% 0, 100% 0, 70% 42%, 100% 42%, 35% 100%, 53% 56%, 0 56%);
}

.mainnav {
  position: relative;
  height: 72px;
}

.mainnav__panel-head,
.mainnav__close {
  display: none;
}

.mainnav__list {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mainnav__item {
  position: relative;
  display: flex;
}

.mainnav__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 92px;
  padding: 0 22px;
  border-left: 1px solid rgba(16, 22, 29, 0.08);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
  text-transform: uppercase;
  transition: background 0.2s ease, color 0.2s ease;
}

.mainnav__item:last-child .mainnav__link {
  border-right: 1px solid rgba(16, 22, 29, 0.08);
}

.mainnav__link.is-active,
.mainnav__item:hover > .mainnav__link,
.mainnav__item:focus-within > .mainnav__link {
  background: rgba(255, 255, 255, 0.08);
}

.mainnav__link.is-active {
  color: #fff;
}

.mainnav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 25;
  min-width: 186px;
  padding: 12px 0;
  background: #fff;
  box-shadow: 0 24px 40px rgba(16, 22, 29, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.mainnav__dropdown a {
  display: block;
  padding: 11px 20px;
  color: #2b3137;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.mainnav__dropdown a:hover {
  background: #faf7f1;
  color: var(--gold-deep);
}

.mainnav__item--has-menu:hover .mainnav__dropdown,
.mainnav__item--has-menu:focus-within .mainnav__dropdown,
.mainnav__item--has-menu.is-open .mainnav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navicons {
  display: flex;
  align-self: stretch;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  width: 52px;
  min-height: 52px;
  margin-left: 10px;
  border: 1px solid rgba(16, 22, 29, 0.12);
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  border: 0;
  border-left: 1px solid rgba(16, 22, 29, 0.08);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.icon-button:last-child {
  border-right: 1px solid rgba(16, 22, 29, 0.08);
}

.icon-button svg,
.benefit svg,
.contact-item svg,
.primary-button svg,
.outline-button svg,
.dark-button svg,
.glass-button svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
}

.icon-button.has-count span {
  position: absolute;
  top: 8px;
  right: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #ff4760;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 700;
  box-shadow: 0 0 0 2px var(--gold);
}

.nav-overlay {
  display: none;
}

.benefits {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.benefits__inner {
  position: relative;
  min-height: 58px;
  overflow: hidden;
}

.benefits__track {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 200%;
  min-height: 58px;
  animation: benefits-marquee 16s linear infinite;
  will-change: transform;
}

.benefits__group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(28px, 3.6vw, 52px);
  flex: 0 0 50%;
  min-width: 50%;
  padding: 0 clamp(14px, 2vw, 28px);
}

.benefit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  min-height: 40px;
  white-space: nowrap;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
}

.benefit svg {
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  color: var(--gold-deep);
}

.benefit--accent strong {
  color: var(--gold-deep);
}

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

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

.section-heading {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.section-heading p {
  margin-bottom: 10px;
}

.section-heading h2,
.review-banner h2 {
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  color: var(--ink);
}

.rating {
  display: inline-flex;
  gap: 3px;
  margin-top: 12px;
}

.rating span {
  color: #d6d0c9;
  font-size: 18px;
}

.rating span.is-filled {
  color: #23bd84;
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 4vw, 44px);
}

.review-banner {
  position: relative;
  overflow: hidden;
  padding: 52px 58px 56px;
  background:
    linear-gradient(120deg, rgba(15, 0, 0, 0.88), rgba(60, 0, 0, 0.78)),
    radial-gradient(circle at 26% 58%, rgba(214, 7, 23, 0.56), transparent 24%);
  color: #fff;
}

.review-banner__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.review-banner h2 {
  color: #fff;
  max-width: 520px;
}

.trust-box {
  min-width: 220px;
  text-align: right;
}

.trust-box span {
  display: block;
  margin-bottom: 14px;
  font-size: 2rem;
  font-weight: 700;
}

.trust-stars {
  display: inline-flex;
  gap: 6px;
}

.trust-stars span,
.review-stars span {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  background: var(--green);
  color: #fff;
}

.trust-stars span::before,
.review-stars span::before {
  content: "★";
  font-size: 14px;
}

.trust-box small {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--section-gap);
}

.review-card {
  position: relative;
  padding: 36px 40px 34px;
  background: #fff;
  color: var(--ink);
  clip-path: polygon(0 0, 100% 0, 100% 88%, 95% 100%, 0 100%);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-stars {
  display: inline-flex;
  gap: 5px;
  margin-bottom: 24px;
}

.review-card blockquote {
  margin: 0 0 26px;
  font-size: 1.15rem;
  line-height: 1.72;
}

.review-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.contact-band {
  background: var(--gold);
}

.contact-band__inner {
  min-height: 132px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex: 1;
}

.contact-item--phone {
  border-left: 1px solid rgba(16, 22, 29, 0.14);
  border-right: 1px solid rgba(16, 22, 29, 0.14);
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.6rem, 3vw, 3.4rem);
  font-weight: 800;
}

.contact-item svg {
  width: 22px;
  height: 22px;
}

.site-footer {
  padding: 72px 0 32px;
  background: var(--night);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 34px;
}

.footer-column {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-column a {
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: #fff;
}

.footer-title {
  margin-bottom: 12px;
}

.footer-column--subscribe p:last-of-type {
  margin-bottom: 10px;
}

.subscribe-form {
  display: grid;
  gap: 12px;
}

.subscribe-form input {
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #fff;
  color: var(--ink);
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.brand--footer {
  color: #fff;
  font-size: 2rem;
}

.brand--footer .brand__mark {
  border-color: var(--gold);
}

.brand--footer .brand__mark::before {
  background: var(--gold);
}

.footer-bottom p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer-bottom strong {
  color: var(--gold);
}

.payments {
  text-align: right;
}

.payments__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 14px;
}

.payments__badges span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.96);
  color: #11151b;
  font-size: 0.7rem;
  font-weight: 700;
}

.product-hero {
  padding: clamp(42px, 6vw, 82px) 0 clamp(34px, 5vw, 70px);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.92), rgba(244, 242, 238, 0.84)),
    linear-gradient(90deg, rgba(17, 182, 122, 0.12), rgba(241, 185, 41, 0.16));
}

.product-hero__grid,
.product-info__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, 0.94fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.product-gallery {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.product-gallery__main {
  position: relative;
  min-height: clamp(420px, 48vw, 620px);
  overflow: hidden;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.product-gallery__main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(16, 22, 29, 0.02), rgba(16, 22, 29, 0.36));
  pointer-events: none;
}

.product-gallery__packshot {
  position: absolute;
  right: clamp(26px, 5vw, 68px);
  bottom: clamp(28px, 5vw, 72px);
  z-index: 1;
  transform: scale(3.4) rotate(-4deg);
  transform-origin: center;
  box-shadow: 0 24px 36px rgba(16, 22, 29, 0.2);
}

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

.product-gallery__thumbs button {
  min-height: 118px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.product-gallery__thumbs button.is-active {
  border-color: var(--gold);
}

.product-gallery__thumbs img {
  width: 100%;
  height: 118px;
  object-fit: cover;
}

.product-summary {
  padding-top: clamp(8px, 2vw, 22px);
  min-width: 0;
}

.product-summary__eyebrow,
.option-label {
  display: block;
  margin: 0 0 12px;
  color: #12815a;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-summary h1,
.product-info h2 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 6.4vw, 6.9rem);
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.product-summary__rating {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 20px;
}

.product-summary__rating a {
  color: var(--ink-soft);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.product-summary__text,
.product-info__grid p:not(.product-summary__eyebrow) {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.08rem;
  line-height: 1.75;
}

.product-summary__price {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 30px 0;
}

.product-summary__price span {
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 800;
}

.product-summary__price del {
  color: #9299a1;
  font-size: 1.2rem;
}

.product-summary__price strong {
  padding: 7px 11px;
  border-radius: 6px;
  background: #ccefe1;
  color: #126445;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.product-options {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.choice-pill {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.choice-pill.is-active,
.choice-pill:hover {
  border-color: var(--ink);
  background: var(--gold);
}

.purchase-row {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 14px;
  margin-bottom: 28px;
  min-width: 0;
}

.quantity-control {
  display: grid;
  grid-template-columns: 40px 1fr 40px;
  min-height: 58px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.quantity-control button,
.quantity-control input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: center;
  font-weight: 800;
}

.quantity-control button {
  cursor: pointer;
}

.quantity-control input {
  appearance: textfield;
}

.quantity-control input::-webkit-outer-spin-button,
.quantity-control input::-webkit-inner-spin-button {
  margin: 0;
  appearance: none;
}

.product-add-button {
  width: 100%;
  justify-content: center;
  color: var(--ink);
  min-width: 0;
  white-space: normal;
}

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

.product-promises div {
  display: grid;
  place-items: center;
  min-height: 104px;
  padding: 18px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 800;
}

.product-promises span {
  display: block;
  max-width: 170px;
  line-height: 1.25;
}

.product-promises svg {
  width: 24px;
  height: 24px;
  margin-bottom: 10px;
  fill: none;
  stroke: currentColor;
}

.product-info {
  padding-bottom: var(--section-space);
  background: #fff;
}

.product-info__grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.8fr);
}

.product-info h2 {
  max-width: 620px;
  margin-bottom: 20px;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.nutrition-grid div {
  min-height: 118px;
  padding: 20px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.nutrition-grid strong {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
}

.nutrition-grid span {
  display: block;
  margin-top: 10px;
  color: var(--ink-soft);
  font-weight: 700;
}

.product-accordions {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.product-accordion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 0 22px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.product-accordion strong {
  font-size: 1.5rem;
  line-height: 1;
}

.product-accordion.is-open {
  background: var(--gold);
}

.product-accordion__panel {
  padding: 20px 22px 24px;
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--ink-soft);
  line-height: 1.7;
}

.product-accordion__panel:last-child {
  border-bottom: 0;
}

.product-reviews {
  padding-bottom: var(--section-space);
  background: var(--paper);
}

.product-hero {
  padding: clamp(40px, 5vw, 72px) 0 44px;
  background: #fff;
}

.product-hero__grid {
  grid-template-columns: minmax(0, 0.56fr) minmax(430px, 0.44fr);
  gap: clamp(38px, 5.5vw, 82px);
  align-items: start;
}

.product-gallery__main {
  display: grid;
  place-items: center;
  min-height: clamp(430px, 43vw, 590px);
  border-radius: 0;
  background: #fff;
  box-shadow: none;
}

.product-gallery__main::after,
.product-gallery__source {
  display: none;
}

.product-combo {
  position: relative;
  width: min(660px, 100%);
  min-height: clamp(360px, 38vw, 510px);
}

.product-pouch,
.product-sachet,
.product-shaker {
  position: absolute;
  bottom: 32px;
  filter: drop-shadow(0 18px 18px rgba(16, 22, 29, 0.12));
}

.product-pouch {
  left: 21%;
  width: 285px;
  height: 390px;
  padding: 118px 34px 30px;
  clip-path: polygon(9% 0, 92% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(112deg, #10aedd 0 22%, transparent 22%),
    radial-gradient(circle at 72% 35%, rgba(255, 255, 255, 0.82) 0 18px, transparent 19px),
    repeating-linear-gradient(35deg, rgba(11, 181, 226, 0.55) 0 3px, transparent 3px 15px),
    linear-gradient(90deg, #101317, #050607 64%, #20242a);
  color: #fff;
}

.product-pouch::before {
  content: "DENZOUR";
  position: absolute;
  top: 66px;
  left: 35px;
  color: #f7fbff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.product-pouch::after {
  content: "";
  position: absolute;
  inset: 12px 0 auto;
  height: 8px;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,0.18) 0 2px, transparent 2px 7px);
}

.product-pouch span,
.product-sachet span {
  display: block;
  color: #13b5e2;
  font-size: 1rem;
  font-weight: 800;
}

.product-pouch strong,
.product-sachet strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  line-height: 0.9;
}

.product-pouch small {
  position: absolute;
  left: 34px;
  bottom: 54px;
  color: #e8eef2;
  font-size: 0.7rem;
  font-weight: 800;
}

.product-sachet {
  left: 9%;
  width: 130px;
  height: 130px;
  padding: 42px 16px 16px;
  clip-path: polygon(7% 0, 93% 0, 100% 100%, 0 100%);
  background:
    linear-gradient(112deg, #10aedd 0 25%, transparent 25%),
    linear-gradient(90deg, #11161b, #060708);
  color: #fff;
}

.product-sachet span {
  font-size: 0.58rem;
}

.product-sachet strong {
  font-size: 1rem;
}

.product-shaker {
  right: 10%;
  width: 132px;
  height: 220px;
  border-radius: 12px 12px 35px 35px;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.13), transparent 18% 70%, rgba(0,0,0,0.2)),
    linear-gradient(#242421, #4c4431);
}

.product-shaker::before {
  content: "";
  position: absolute;
  top: -25px;
  left: -8px;
  width: 150px;
  height: 34px;
  border-radius: 45%;
  background: #070707;
}

.product-shaker::after {
  content: "";
  position: absolute;
  top: -16px;
  left: 4px;
  width: 126px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  background: #151515;
}

.product-shaker span {
  position: absolute;
  top: 84px;
  left: 50%;
  color: #d2b537;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transform: translateX(-50%) rotate(90deg);
}

.product-zoom {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.product-zoom svg {
  width: 15px;
  height: 15px;
}

.product-gallery__thumbs {
  grid-template-columns: repeat(4, 54px);
  justify-content: start;
  gap: 20px;
}

.product-gallery__thumbs button {
  display: grid;
  place-items: center;
  width: 54px;
  min-height: 54px;
  border: 1px solid #d8d8d8;
  border-radius: 0;
}

.product-gallery__thumbs button.is-active {
  border-color: #111;
}

.thumb-combo {
  width: 38px;
  height: 42px;
  background: linear-gradient(110deg, #0fb0dd 0 24%, #090b0d 24%);
  clip-path: polygon(10% 0, 92% 0, 100% 100%, 0 100%);
}

.thumb-combo--kit {
  width: 42px;
  background:
    linear-gradient(90deg, #151719 0 44%, #514936 44% 70%, transparent 70%),
    linear-gradient(110deg, #0fb0dd 0 25%, #090b0d 25%);
}

.thumb-combo--label {
  background: linear-gradient(180deg, #18b3dd 0 28%, #080a0c 28%);
}

.thumb-combo--blue {
  background: linear-gradient(135deg, #21c1e6, #1387bd);
}

.product-summary {
  padding-top: 16px;
}

.product-summary h1 {
  max-width: 560px;
  font-size: clamp(2.9rem, 4vw, 4.25rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.product-summary__rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin: 20px 0 10px;
  color: #222;
  font-size: 0.86rem;
}

.product-summary__rating .rating {
  align-items: center;
  gap: 2px;
  margin-top: 0;
  line-height: 1;
}

.product-summary__rating .rating span {
  color: #dd5d2a;
  font-size: 14px;
  line-height: 1;
}

.product-summary__rating a,
.product-summary__rating > span {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  color: #222;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.product-summary__rating > * + * {
  position: relative;
}

.product-summary__rating > * + *::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 14px;
  margin: 0 14px 0 0;
  background: var(--line);
  vertical-align: -2px;
}

.product-summary__price {
  gap: 8px;
  margin: 12px 0 20px;
}

.product-summary__price span {
  font-size: 1.55rem;
  line-height: 1;
}

.product-summary__price del {
  color: #aaa;
  font-size: 0.96rem;
  font-weight: 700;
}

.product-summary__text {
  padding: 18px 0 22px;
  border-top: 1px solid var(--line);
  color: #62666b;
  font-size: 0.98rem;
  line-height: 1.55;
}

.quantity-tabs {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.quantity-tabs > span {
  color: #111;
  font-size: 0.86rem;
  font-weight: 800;
}

.quantity-tabs__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.quantity-tabs__buttons button {
  min-width: 72px;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid #dcdcdc;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-weight: 800;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.quantity-tabs__buttons button:hover,
.quantity-tabs__buttons button.is-active {
  border-color: #050505;
  background: #050505;
  color: #fff;
}

.purchase-row {
  grid-template-columns: 92px minmax(190px, 1fr) 42px 42px;
  gap: 8px;
  margin-bottom: 22px;
}

.quantity-control {
  grid-template-columns: 28px 36px 28px;
  min-height: 40px;
  border: 0;
  border-radius: 999px;
  background: #f6f6f6;
}

.product-add-button {
  min-height: 40px;
  padding: 0 24px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font-size: 0.78rem;
}

.product-add-button svg {
  width: 15px;
  height: 15px;
}

.product-circle-button {
  display: grid;
  place-items: center;
  width: 42px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #111;
  cursor: pointer;
}

.product-service-list {
  display: grid;
  gap: 9px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.product-service-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #3f454c;
  font-size: 0.92rem;
  line-height: 1.35;
}

.product-service-list svg {
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  fill: none;
  stroke: #111820;
}

.product-service-list span {
  display: block;
  min-width: 0;
}

.product-service-list strong {
  color: #0d1115;
}

.secure-checkout {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 18px 0 20px;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
}

.secure-checkout__badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
}

.secure-checkout__badges span {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  min-height: 24px;
  padding: 0 6px;
  border: 1px solid #e7e7e7;
  border-radius: 3px;
  background: #fafafa;
  color: #536176;
  font-size: 0.72rem;
  font-weight: 800;
}

.product-meta {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  color: #7a7f85;
  font-size: 0.86rem;
}

.product-meta p {
  margin: 0;
}

.product-meta a,
.product-meta strong {
  color: #07090b;
}

.is-hidden {
  display: none !important;
}

.power-banner {
  position: relative;
  min-height: clamp(360px, 34vw, 520px);
  margin: 20px;
  overflow: hidden;
  border-radius: 10px;
  background: #050505;
}

.power-banner img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: left center;
}

.power-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46) 55%, rgba(0, 0, 0, 0.86));
  pointer-events: none;
}

.power-banner__content {
  position: absolute;
  top: 50%;
  right: clamp(54px, 9vw, 150px);
  z-index: 1;
  width: min(470px, 42%);
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}

.power-banner__content h1 {
  margin: 0 0 26px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(3rem, 4.5vw, 5.2rem);
  font-style: italic;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.04em;
}

.power-banner__content p {
  margin: 0 0 44px;
  color: #f4f4f4;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.power-banner__content p span {
  color: #f13a3a;
}

.power-banner__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: background 0.2s ease, color 0.2s ease;
}

.power-banner__button:hover {
  background: #fff;
  color: #111;
}

.category-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 20px 20px;
}

.category-tile {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  min-height: 104px;
  padding: 18px 26px;
  overflow: hidden;
  background: #fff;
  color: #12161c;
  transition: transform 0.2s ease, color 0.2s ease;
}

.category-tile::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: 5px;
  background: var(--gold);
  transition: width 0.24s ease;
}

.category-tile::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  width: 28px;
  height: 28px;
  background: #f4f2ee;
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}

.category-tile:hover,
.category-tile:focus-visible {
  color: #111;
  transform: translateY(-2px);
}

.category-tile:hover::before,
.category-tile:focus-visible::before {
  width: 100%;
}

.category-tile__image {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: #fbfbfb;
  color: var(--gold-deep);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.category-tile__image svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
}

.category-tile:hover .category-tile__image,
.category-tile:focus-visible .category-tile__image {
  border-color: rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.56);
  color: #111;
}

.category-tile h2 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
}

.category-tile p {
  margin: 0;
  color: #7b838c;
  font-weight: 700;
}

.category-tile:hover p,
.category-tile:focus-visible p {
  color: rgba(17, 17, 17, 0.72);
}

@media (max-width: 1280px) {
  .brand {
    flex-basis: 220px;
  }

  .mainnav__link {
    min-width: 84px;
    padding: 0 18px;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .benefits__track {
    min-height: 54px;
  }

  .benefits__group {
    gap: 26px;
    padding: 0 18px;
  }

  .review-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-summary {
    padding-top: 0;
  }

  .category-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .contact-band__inner,
.footer-bottom,
.review-banner__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .topbar__inner {
    min-height: auto;
    padding: 12px 0;
    justify-content: center;
  }

  .navband__inner {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    order: 2;
    flex: 1 1 0;
    min-height: 52px;
    padding: 0;
    border-right: 0;
    justify-content: center;
    text-align: center;
  }

  .navicons {
    order: 3;
    flex: 0 0 auto;
    align-self: stretch;
    margin-left: 0;
  }

  .icon-button {
    width: 50px;
    min-height: 50px;
  }

  .icon-button.has-count {
    padding-right: 4px;
  }

  .icon-button.has-count svg {
    width: 20px;
    height: 20px;
  }

  .nav-toggle {
    display: inline-flex;
    order: 1;
    flex: 0 0 52px;
    margin-left: 0;
  }

  .mainnav {
    order: 4;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 45;
    display: block;
    width: min(320px, calc(100vw - 56px));
    height: 100vh;
    background: #fff;
    box-shadow: 24px 0 50px rgba(16, 22, 29, 0.2);
    transform: translateX(-100%);
    transition: transform 0.28s ease;
    overflow-y: auto;
  }

  .mainnav.is-open {
    transform: translateX(0);
  }

  .mainnav__panel-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 68px;
    padding: 16px 20px;
    background: #fff;
    border-bottom: 1px solid var(--line);
  }

  .mainnav__panel-brand {
    font-family: "Barlow Condensed", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 0.03em;
  }

  .mainnav__close {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 0;
    background: #f5f2ec;
    color: var(--ink);
    cursor: pointer;
  }

  .mainnav__close span {
    position: absolute;
    width: 18px;
    height: 1.8px;
    background: currentColor;
  }

  .mainnav__close span:first-child {
    transform: rotate(45deg);
  }

  .mainnav__close span:last-child {
    transform: rotate(-45deg);
  }

  .nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: block;
    background: rgba(16, 22, 29, 0.42);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
  }

  .nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .mainnav__list {
    flex-direction: column;
    width: 100%;
    min-height: calc(100vh - 68px);
    background: #fff;
  }

  .mainnav__item {
    flex: none;
  }

  .mainnav__link {
    width: 100%;
    justify-content: flex-start;
    min-height: 58px;
    padding: 0 20px;
    border-left: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    background: #fff;
    font-size: 1.08rem;
  }

  .mainnav__item:last-child .mainnav__link {
    border-right: 0;
  }

  .mainnav__link.is-active,
.mainnav__item:hover > .mainnav__link,
.mainnav__item:focus-within > .mainnav__link {
    background: #fff;
    color: var(--ink);
  }

  .mainnav__item--has-menu > .mainnav__link {
    justify-content: space-between;
  }

  .mainnav__item--has-menu > .mainnav__link::after {
    content: "";
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
  }

  .mainnav__dropdown {
    display: none;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .review-banner {
    padding: 42px 34px;
  }

  .contact-band__inner {
    align-items: stretch;
    gap: 0;
  }

  .contact-item {
    justify-content: flex-start;
    padding: 18px 0;
  }

  .contact-item--phone {
    width: 100%;
    padding: 18px 0;
    border: 0;
    border-top: 1px solid rgba(16, 22, 29, 0.14);
    border-bottom: 1px solid rgba(16, 22, 29, 0.14);
    font-size: clamp(2.4rem, 6vw, 3.1rem);
  }

  .category-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {

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

@media (max-width: 720px) {
  .power-banner {
    min-height: 470px;
    margin: 5px;
  }

  .category-strip {
    gap: 8px;
    margin: 0 5px 5px;
    padding: 8px;
  }

  .category-tile {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 14px;
    min-height: 88px;
    padding: 14px 18px;
  }

  .category-tile h2 {
    font-size: 0.98rem;
  }

  .category-tile p {
    font-size: 0.9rem;
  }

  .category-tile__image {
    width: 50px;
    height: 50px;
  }

  .category-tile__image svg {
    width: 26px;
    height: 26px;
  }

  .power-banner img {
    object-position: 38% center;
  }

  .power-banner::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28) 38%, rgba(0, 0, 0, 0.58));
  }

  .power-banner__content {
    top: 49%;
    right: auto;
    left: 50%;
    width: min(72%, 330px);
    padding: 28px 10px 30px;
    background: rgba(255, 255, 255, 0.78);
    color: #191919;
    transform: translate(-50%, -50%);
  }

  .power-banner__content h1 {
    margin-bottom: 16px;
    color: #191919;
    font-size: 2.5rem;
    letter-spacing: 0.02em;
  }

  .power-banner__content p {
    margin-bottom: 24px;
    color: #191919;
    font-size: 1.15rem;
  }

  .power-banner__button {
    min-width: 132px;
    min-height: 44px;
    border-color: rgba(17, 17, 17, 0.72);
    color: #111;
    font-size: 0.88rem;
  }

  .section {
    padding-top: clamp(42px, 9vw, 54px);
  }

  .section--logos {
    padding-bottom: clamp(42px, 9vw, 54px);
  }

  .topbar {
    font-size: 14px;
  }

  .section-heading h2,
.review-banner h2 {
    font-size: 2.8rem;
  }

  .primary-button,
.outline-button,
.dark-button,
.glass-button {
    padding: 15px 22px;
    gap: 10px;
  }

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

  .product-gallery__main {
    min-height: 380px;
  }

  .product-gallery__packshot {
    right: 28px;
    bottom: 38px;
    transform: scale(2) rotate(-4deg);
  }

  .product-combo {
    width: min(560px, 100%);
    min-height: 380px;
  }

  .product-pouch {
    left: 20%;
    width: 230px;
    height: 320px;
    padding: 100px 26px 24px;
  }

  .product-shaker {
    right: 12%;
    width: 108px;
    height: 180px;
  }

  .product-shaker::before {
    width: 124px;
  }

  .product-shaker::after {
    width: 104px;
  }

  .product-sachet {
    left: 8%;
    width: 104px;
    height: 104px;
    padding: 34px 12px 12px;
  }

  .product-gallery__thumbs button,
.product-gallery__thumbs img {
    min-height: 86px;
    height: 86px;
  }

  .purchase-row,
.nutrition-grid {
    grid-template-columns: 1fr;
  }

  .purchase-row {
    grid-template-columns: 92px minmax(0, 1fr) 42px 42px;
  }

  .product-promises {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 82%);
    grid-template-columns: none;
    gap: 12px;
    width: 100%;
    padding: 0 2px 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .product-promises::-webkit-scrollbar {
    display: none;
  }

  .product-promises div {
    scroll-snap-align: start;
  }

  .product-summary h1 {
    font-size: 3.6rem;
    line-height: 0.94;
  }

  .review-banner {
    padding: 32px 22px;
  }

  .review-card {
    padding: 28px 24px;
  }

  .contact-band__inner {
    padding: 12px 0;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }

  .site-footer {
    padding: 52px 0 24px;
  }

  .footer-bottom {
    gap: 24px;
  }

  .payments {
    text-align: left;
  }

  .payments__badges {
    justify-content: flex-start;
  }
}

@media (max-width: 540px) {
  .navband__inner {
    gap: 10px;
  }

  .brand {
    flex: 1 1 auto;
    justify-content: flex-start;
    min-height: 44px;
    font-size: 1.6rem;
    padding-right: 8px;
  }

  .navicons {
    width: auto;
    max-width: max-content;
  }

  .icon-button {
    width: 44px;
    min-height: 44px;
    flex: 0 0 44px;
  }

  .icon-button.has-count span {
    top: 5px;
    right: 4px;
    min-width: 17px;
    height: 17px;
    font-size: 9px;
  }

  .nav-toggle {
    width: 44px;
    min-height: 44px;
    flex-basis: 44px;
  }

  .brand__mark {
    width: 18px;
    height: 18px;
    border-width: 2.5px;
  }

  .brand__mark::before {
    inset: 3px;
  }

  .brand__word {
    line-height: 1;
  }

  .benefits__track {
    animation-duration: 13s;
  }

  .benefits__group {
    justify-content: flex-start;
    gap: 22px;
    padding: 0 12px;
  }

  .benefit {
    gap: 8px;
    font-size: 0.9rem;
  }

  .benefit svg {
    width: 15px;
    height: 15px;
  }

  .review-card blockquote {
    font-size: 1.02rem;
  }

  .contact-item--phone {
    font-size: 2.2rem;
  }

  .product-gallery__main {
    min-height: 280px;
  }

  .product-combo {
    min-height: 300px;
  }

  .product-pouch {
    left: 18%;
    width: 176px;
    height: 250px;
    padding: 78px 18px 18px;
  }

  .product-pouch::before {
    top: 46px;
    left: 20px;
  }

  .product-pouch span {
    font-size: 0.78rem;
  }

  .product-pouch strong {
    font-size: 1.45rem;
  }

  .product-pouch small {
    left: 20px;
    bottom: 34px;
  }

  .product-shaker {
    right: 7%;
    width: 82px;
    height: 140px;
  }

  .product-shaker::before {
    top: -20px;
    width: 96px;
    height: 28px;
  }

  .product-shaker::after {
    top: -13px;
    width: 78px;
  }

  .product-sachet {
    left: 4%;
    width: 82px;
    height: 82px;
    padding: 28px 9px 8px;
  }

  .product-sachet strong {
    font-size: 0.74rem;
  }

  .product-summary h1 {
    font-size: 2.75rem;
  }

  .product-summary__rating {
    gap: 7px 0;
    margin: 16px 0 10px;
    font-size: 0.82rem;
  }

  .product-summary__rating .rating {
    flex: 0 0 100%;
  }

  .product-summary__rating .rating span {
    font-size: 15px;
  }

  .product-summary__rating > * + *::before {
    height: 12px;
    margin-right: 10px;
  }

  .product-add-button {
    padding-inline: 14px;
  }

  .purchase-row {
    grid-template-columns: 1fr;
  }

  .quantity-control {
    width: 110px;
  }

  .product-circle-button {
    display: none;
  }

  .product-service-list {
    gap: 12px;
  }

  .product-service-list div {
    gap: 12px;
    font-size: 0.9rem;
  }

  .product-service-list svg {
    flex-basis: 22px;
    width: 22px;
    height: 22px;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, 48px);
    gap: 12px;
  }

  .product-gallery__thumbs button {
    width: 48px;
    min-height: 48px;
  }
}

@media (max-width: 370px) {
  .navband__inner {
    gap: 8px;
    padding: 8px 0;
  }

  .nav-toggle {
    width: 40px;
    min-height: 40px;
    flex-basis: 40px;
  }

  .nav-toggle span {
    width: 16px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
    min-height: 40px;
    font-size: 1.34rem;
    letter-spacing: 0.01em;
    padding-right: 0;
  }

  .brand__mark {
    width: 16px;
    height: 16px;
    border-width: 2px;
  }

  .brand__mark::before {
    inset: 2.5px;
  }

  .brand__word {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .navicons {
    gap: 0;
  }

  .icon-button {
    width: 40px;
    min-height: 40px;
    flex-basis: 40px;
  }

  .icon-button svg {
    width: 17px;
    height: 17px;
  }

  .icon-button.has-count svg {
    width: 18px;
    height: 18px;
  }

  .icon-button.has-count span {
    top: 4px;
    right: 3px;
    min-width: 15px;
    height: 15px;
    padding: 0 4px;
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .benefits__track {
    animation: none;
  }
}





/* ── SECTION ── */
    .gym-section {
      padding: 72px 32px 80px;
      background: var(--bg);
      font-family: var(--font-body);
      color: #fff;
    }
 
    /* ── HEADER ── */
    .section-header {
      text-align: center;
      margin-bottom: 48px;
    }
 
    .section-tag {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }
 
    .section-title {
      font-family: var(--font-heading);
      font-size: clamp(40px, 6vw, 62px);
      font-weight: 900;
      text-transform: uppercase;
      color: #fff;
      line-height: 1;
      letter-spacing: 1px;
      margin: 5px 0 !important;
    }
 
    .section-title span { color: var(--gold); }
 
    .section-divider {
      width: 56px;
      height: 3px;
      background: var(--gold);
      margin: 16px auto 0;
      border-radius: 2px;
    }
 
    /* ── OWL WRAPPER ── */
    .owl-carousel-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }
 
    .product-owl .owl-stage {
      padding: 10px 0 20px;
    }
 
    .product-owl .item {
      padding: 0 2px;
    }
 
    /* ── CARD ── */
    .prod-box {
      background: var(--card-bg);
      border: 1px solid var(--card-border);
      border-radius: 4px;
      overflow: hidden;
      position: relative;
      transition: border-color 0.22s ease, transform 0.22s ease;
    }
 
    .prod-box:hover {
      border-color: var(--gold);
      transform: translateY(-4px);
    }
 
    /* Badge */
    .prod-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: 2px;
      z-index: 2;
    }
    .prod-badge.hot  { background: #e63946; color: #fff; }
    .prod-badge.sale { background: var(--gold); color: #0d0d0d; }
    .prod-badge.new  { background: #2cb67d; color: #fff; }
 
    /* Image */
    .prod-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      filter: brightness(0.88);
      transition: filter 0.22s ease;
    }
 
    .prod-box:hover .prod-img { filter: brightness(1); }
 
    /* Body */
    .prod-desc {
      padding: 18px 18px 20px;
    }
 
    .prod-desc h3 {
      font-family: var(--font-heading);
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      line-height: 1.1;
      margin-bottom: 4px;
    }
 
    .prod-subtitle {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      color: #888;
      text-transform: uppercase;
      letter-spacing: 1.5px;
      margin-bottom: 14px;
    }
 
    /* Variants */
    .quantity {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 14px;
    }
 
    .btn-qty1 {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      padding: 5px 10px;
      border-radius: 2px;
      border: 1px solid #3a3a3a;
      background: #111;
      color: #999;
      cursor: pointer;
      transition: all 0.15s;
    }
 
    .btn-qty1.active,
    .btn-qty1:hover {
      border-color: var(--gold);
      color: var(--gold);
      background: rgba(245,196,20,0.09);
    }
 
    /* Price */
    .prod-price {
      margin-bottom: 16px;
    }
 
    .prod-price p {
      font-family: var(--font-body);
      font-size: 12px;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px;
      display: flex;
      align-items: baseline;
      gap: 8px;
    }
 
    .price-value {
      font-family: var(--font-heading);
      font-size: 28px;
      font-weight: 900;
      color: var(--gold);
      letter-spacing: 0.5px;
    }
 
    /* Buttons */
    .prod-order-btn {
      display: flex;
      gap: 10px;
    }
 
    .btn-details {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 500;
      padding: 9px 14px;
      border: 1px solid #3a3a3a;
      background: transparent;
      color: #aaa;
      cursor: pointer;
      border-radius: 2px;
      text-decoration: none;
      transition: all 0.15s;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
    }
 
    .btn-details:hover { border-color: #888; color: #fff; }
 
    .btn-order-now {
      font-family: var(--font-heading);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 9px 18px;
      background: var(--gold);
      color: #0d0d0d;
      border: none;
      cursor: pointer;
      border-radius: 2px;
      flex: 1;
      transition: background 0.15s;
    }
 
    .btn-order-now:hover { background: var(--gold-hover); }
 
    /* ── OWL NAV ARROWS ── */
    .product-owl .owl-nav {
      margin-top: 28px;
      display: flex;
      justify-content: center;
      gap: 12px;
    }
 
    .product-owl .owl-nav button.owl-prev,
    .product-owl .owl-nav button.owl-next {
      width: 44px !important;
      height: 44px !important;
      background: #1a1a1a !important;
      border: 1px solid #3a3a3a !important;
      border-radius: 2px !important;
      color: #aaa !important;
      font-size: 22px !important;
      line-height: 44px !important;
      text-align: center !important;
      transition: all 0.15s !important;
      display: inline-flex !important;
      align-items: center !important;
      justify-content: center !important;
    }
 
    .product-owl .owl-nav button.owl-prev:hover,
    .product-owl .owl-nav button.owl-next:hover {
      background: var(--gold) !important;
      border-color: var(--gold) !important;
      color: #0d0d0d !important;
    }
 
    .product-owl .owl-nav button span {
      font-size: 24px;
      line-height: 1;
      display: block;
    }
 
    /* ── OWL DOTS ── */
    .product-owl .owl-dots {
      margin-top: 24px;
      display: flex;
      justify-content: center;
      gap: 8px;
    }
 
    .product-owl .owl-dot span {
      width: 8px !important;
      height: 8px !important;
      background: #3a3a3a !important;
      border-radius: 50% !important;
      margin: 0 !important;
      transition: all 0.2s !important;
    }
 
    .product-owl .owl-dot.active span,
    .product-owl .owl-dot:hover span {
      background: var(--gold) !important;
      width: 24px !important;
      border-radius: 4px !important;
    }


/* =========     TESTIMONIALS SECTION  ========== */

  .testi-section {
    padding: 72px 32px 80px;
    background: #111;
    position: relative;
  }
 
  .testi-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute;
    top: 0;
    left: 0;
  }
 
  .testi-box {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 28px 24px 26px;
    position: relative;
    transition: border-color 0.22s ease, transform 0.22s ease;
    height: 100%;
  }
 
  .testi-box:hover {
    border-color: #F5C414;
    transform: translateY(-4px);
  }
 
  .testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
  }
 
  .testi-stars span { color: #F5C414; font-size: 17px; line-height: 1; }
  .testi-stars span.empty { color: #3a3a3a; }
 
  .testi-review {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #bbb;
    line-height: 1.75;
    margin-bottom: 22px;
    position: relative;
  }
 
  .testi-review::before {
    content: '\201C';
    font-size: 52px;
    line-height: 0;
    color: #F5C414;
    opacity: 0.4;
    vertical-align: -20px;
    margin-right: 3px;
    font-family: Georgia, serif;
  }
 
  .testi-divider {
    width: 40px;
    height: 2px;
    background: #F5C414;
    margin-bottom: 14px;
    border-radius: 2px;
  }
 
  .testi-name {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 19px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
  }
 
  .testi-tag {
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: #F5C414;
    text-transform: uppercase;
    letter-spacing: 1.5px;
  }
 
  .testi-owl .item { padding: 0 4px; }
  .testi-owl .owl-stage { padding: 10px 0 20px; }
 
  .testi-owl .owl-nav {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 12px;
  }
 
  .testi-owl .owl-nav button.owl-prev,
  .testi-owl .owl-nav button.owl-next {
    width: 44px !important; height: 44px !important;
    background: #1a1a1a !important;
    border: 1px solid #3a3a3a !important;
    border-radius: 2px !important;
    color: #aaa !important;
    font-size: 22px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.15s !important;
  }
 
  .testi-owl .owl-nav button.owl-prev:hover,
  .testi-owl .owl-nav button.owl-next:hover {
    background: #F5C414 !important;
    border-color: #F5C414 !important;
    color: #0d0d0d !important;
  }
 
  .testi-owl .owl-dots {
    margin-top: 24px;
    display: flex;
    justify-content: center;
    gap: 8px;
  }
 
  .testi-owl .owl-dot span {
    width: 8px !important; height: 8px !important;
    background: #3a3a3a !important;
    border-radius: 50% !important;
    margin: 0 !important;
    transition: all 0.2s !important;
  }
 
  .testi-owl .owl-dot.active span,
  .testi-owl .owl-dot:hover span {
    background: #F5C414 !important;
    width: 24px !important;
    border-radius: 4px !important;
  }

/* ===================  */

 .faq-section {
    padding: 72px 32px 80px;
    background: #0d0d0d;
    position: relative;
  }
 
  .faq-section::before {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute;
    top: 0;
    left: 0;
  }
 
  /* Two-column grid */
  .faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 32px;
    align-items: start;
  }
 
  @media (max-width: 768px) {
    .faq-grid { grid-template-columns: 1fr; }
  }
 
  /* Accordion item */
  .faq-item {
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.2s;
    margin-bottom: 5px;
  }
 
  .faq-item.open {
    border-color: #F5C414;
  }
 
  /* Question button */
  .faq-question {
    width: 100%;
    background: #1a1a1a;
    border: none;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
  }
 
  .faq-item.open .faq-question { background: #1f1f1f; }
  .faq-question:hover           { background: #222; }
 
  .faq-question-text {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    line-height: 1.2;
  }
 
  .faq-item.open .faq-question-text { color: #F5C414; }
 
  /* Plus / minus icon */
  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border: 1px solid #3a3a3a;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    position: relative;
  }
 
  .faq-item.open .faq-icon {
    background: #F5C414;
    border-color: #F5C414;
  }
 
  .faq-icon::before,
  .faq-icon::after {
    content: '';
    position: absolute;
    background: #aaa;
    border-radius: 2px;
    transition: all 0.25s;
  }
 
  .faq-icon::before { width: 12px; height: 2px; }
  .faq-icon::after  { width: 2px;  height: 12px; }
 
  .faq-item.open .faq-icon::before { background: #0d0d0d; }
  .faq-item.open .faq-icon::after  { background: #0d0d0d; transform: scaleY(0); }
 
  /* Answer panel */
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    background: #161616;
  }
 
  .faq-item.open .faq-answer { max-height: 300px; }
 
  .faq-answer-inner {
    padding: 16px 20px 20px;
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #aaa;
    line-height: 1.8;
    border-top: 1px solid #2a2a2a;
  }
 
  .faq-answer-inner a { color: #F5C414; text-decoration: none; }
  .faq-answer-inner a:hover { text-decoration: underline; }



 /* ══════════════════════════════════════════
     RECENT BLOG SECTION
 ══════════════════════════════════════════  */


   .blog-section {
    padding: 72px 32px 80px;
    background: #111;
    position: relative;
  }
  .blog-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute;
    top: 0;
    left: 0;
  }
  .blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  @media (max-width: 900px) { .blog-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }
  .blog-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color 0.22s ease, transform 0.22s ease;
  }
  .blog-card:hover { border-color: #F5C414; transform: translateY(-4px); }
  .blog-img-wrap { position: relative; overflow: hidden; }
  .blog-img {
    width: 100%; height: 210px; object-fit: cover; display: block;
    filter: brightness(0.85);
    transition: filter 0.3s ease, transform 0.4s ease;
  }
  .blog-card:hover .blog-img { filter: brightness(1); transform: scale(1.04); }
  .blog-cat {
    position: absolute; bottom: 14px; left: 14px;
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
    padding: 4px 10px; border-radius: 2px;
    background: #F5C414; color: #0d0d0d; z-index: 2;
  }
  .blog-cat.red   { background: #e63946; color: #fff; }
  .blog-cat.green { background: #2cb67d; color: #fff; }
  .blog-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
  .blog-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .blog-date, .blog-read-time {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 11px; color: #666; text-transform: uppercase; letter-spacing: 1px;
  }
  .blog-meta-dot { width: 3px; height: 3px; background: #444; border-radius: 50%; flex-shrink: 0; }
  .blog-title {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 21px; font-weight: 900; color: #fff;
    text-transform: uppercase; letter-spacing: 0.4px; line-height: 1.2;
    margin-bottom: 10px; text-decoration: none; display: block;
    transition: color 0.2s;
  }
  .blog-title:hover { color: #F5C414; }
  .blog-excerpt {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 13px; color: #888; line-height: 1.75; margin-bottom: 20px; flex: 1;
  }
  .blog-read-more {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: "Barlow Condensed",sans-serif;
    font-size: 15px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
    color: #F5C414; text-decoration: none; transition: gap 0.2s; margin-top: auto;
  }
  .blog-read-more:hover { gap: 14px; }
  .blog-arrow { font-size: 18px; line-height: 1; transition: transform 0.2s; }
  .blog-read-more:hover .blog-arrow { transform: translateX(4px); }
  .blog-footer { text-align: center; margin-top: 40px; }
  .btn-view-all {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 17px; font-weight: 900; letter-spacing: 2px; text-transform: uppercase;
    padding: 13px 40px; background: transparent; color: #F5C414;
    border: 1px solid #F5C414; border-radius: 2px; cursor: pointer;
    text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s;
  }
  .btn-view-all:hover { background: #F5C414; color: #0d0d0d; }



  /* ── ABOUT: Who We Are ── */
  .about-section {
    padding: 80px 32px;
    background: #0d0d0d;
    position: relative;
  }
  .about-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute;
    top: 0; left: 0;
  }
  .about-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 860px) {
    .about-inner { grid-template-columns: 1fr; gap: 40px; }
    .about-img-wrap { order: -1; }
  }
  .about-left {}
  .about-eyebrow {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 4px;
    text-transform: uppercase; color: #F5C414;
    display: block; margin-bottom: 14px;
  }
  .about-heading {
    font-family: "Barlow Condensed",sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900; text-transform: uppercase;
    color: #fff; line-height: 1.05; margin-bottom: 22px;
  }
  .about-heading span { color: #F5C414; }
  .about-body {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 15px; color: #999; line-height: 1.8;
    margin-bottom: 14px;
  }
  .about-body strong { color: #ddd; font-weight: 600; }
  .about-stats {
    display: flex; gap: 32px; margin: 30px 0 36px;
    flex-wrap: wrap;
  }
  .about-stat-num {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 42px; font-weight: 900; color: #F5C414;
    line-height: 1; display: block;
  }
  .about-stat-label {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 11px; font-weight: 600; letter-spacing: 2px;
    text-transform: uppercase; color: #666;
    display: block; margin-top: 4px;
  }
  .about-cta {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 16px; font-weight: 900; letter-spacing: 2px;
    text-transform: uppercase;
    padding: 13px 32px;
    background: transparent; color: #F5C414;
    border: 1px solid #F5C414; border-radius: 2px;
    cursor: pointer; text-decoration: none;
    display: inline-flex; align-items: center; gap: 10px;
    transition: background 0.2s, color 0.2s;
  }
  .about-cta:hover { background: #F5C414; color: #0d0d0d; }
  .about-img-wrap {
    position: relative; border-radius: 4px; overflow: hidden;
  }
  .about-img {
    width: 100%; height: 480px; object-fit: cover;
    display: block; filter: brightness(0.85);
    border-radius: 4px;
  }
  .about-badge {
    position: absolute; bottom: 24px; left: 24px;
    background: #F5C414; color: #0d0d0d;
    padding: 16px 22px; border-radius: 2px;
    display: flex; gap: 28px;
  }
  .about-badge-item {}
  .about-badge-num {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 30px; font-weight: 900; line-height: 1;
    display: block;
  }
  .about-badge-label {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; display: block; margin-top: 3px;
  }
 
  /* ── WHY CHOOSE US ── */
  .why-section {
    padding: 80px 32px;
    background: #111;
    position: relative;
  }
  .why-section::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute; top: 0; left: 0;
  }
  .why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  @media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }
  .why-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 32px 26px 28px;
    transition: border-color 0.22s, transform 0.22s;
    position: relative;
    overflow: hidden;
  }
  .why-card::after {
    content: "";
    position: absolute; bottom: 0; left: 0;
    width: 0; height: 3px;
    background: #F5C414;
    transition: width 0.35s ease;
  }
  .why-card:hover { border-color: #F5C414; transform: translateY(-4px); }
  .why-card:hover::after { width: 100%; }
  .why-icon {
    width: 52px; height: 52px;
    background: rgba(245,196,20,0.1);
    border: 1px solid rgba(245,196,20,0.25);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    font-size: 24px; line-height: 1;
  }
  .why-title {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 20px; font-weight: 900; color: #fff;
    text-transform: uppercase; letter-spacing: 0.4px;
    margin-bottom: 10px;
  }
  .why-text {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 13px; color: #888; line-height: 1.75;
  }
 
  /* ── HOW IT WORKS ── */
  .how-section {
    padding: 80px 32px;
    background: #0d0d0d;
    position: relative;
  }
  .how-section::before {
    content: "";
    display: block; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute; top: 0; left: 0;
  }
  .how-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (max-width: 860px) {
    .how-inner { grid-template-columns: 1fr; }
    .how-img-wrap { height: 300px; }
  }
  .how-img-wrap {
    position: relative; border-radius: 4px; overflow: hidden;
    height: 480px;
  }
  .how-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; filter: brightness(0.8);
    transition: filter 0.3s;
  }
  .how-img-wrap:hover .how-img { filter: brightness(1); }
  .how-step-list {
    display: flex; flex-direction: column; gap: 28px;
  }
  .how-step {
    display: flex; gap: 20px; align-items: flex-start;
  }
  .how-step-num {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 42px; font-weight: 900;
    color: rgba(245,196,20,0.18);
    line-height: 1; flex-shrink: 0; width: 48px;
    transition: color 0.2s;
  }
  .how-step:hover .how-step-num { color: #F5C414; }
  .how-step-title {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 19px; font-weight: 900; color: #fff;
    text-transform: uppercase; letter-spacing: 0.4px;
    margin-bottom: 6px;
  }
  .how-step-text {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 13px; color: #888; line-height: 1.75;
  }
  .how-step-divider {
    width: 100%; height: 1px; background: #222;
    margin-top: 28px;
  }
  .how-step:last-child .how-step-divider { display: none; }



/* ══════════   STEROID THEORY + BENEFITS CONTENT SECTION   ═════════════ */

 
  /* ── Shared content section base ── */
  .content-section {
    padding: 80px 32px;
    position: relative;
  }
  .content-section::before {
    content: "";
    display: block; width: 100%; height: 3px;
    background: linear-gradient(90deg, transparent, #F5C414, transparent);
    position: absolute; top: 0; left: 0;
  }
  .content-section.bg-dark  { background: #0d0d0d; }
  .content-section.bg-mid   { background: #111; }
  .content-section.bg-card  { background: #141414; }
 
  .content-max {
    max-width: 1200px;
    margin: 0 auto;
  }
 
  /* ── Intro split: text left, highlight box right ── */
  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 860px) { .intro-grid { grid-template-columns: 1fr; } }
 
  .intro-body {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 15px; color: #999; line-height: 1.85;
    margin-bottom: 16px;
  }
  .intro-body strong { color: #ddd; font-weight: 600; }
 
  .intro-highlight {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-left: 4px solid #F5C414;
    border-radius: 0 4px 4px 0;
    padding: 28px 26px;
    margin-bottom: 18px;
  }
  .intro-highlight p {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 14px; color: #aaa; line-height: 1.8; margin: 0;
  }
  .intro-highlight p + p { margin-top: 12px; }
 
  /* ── Full-width prose ── */
  .prose-block {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 15px; color: #999; line-height: 1.85;
    margin-bottom: 14px;
  }
  .prose-block strong { color: #ddd; font-weight: 600; }
  .prose-block em { color: #F5C414; font-style: normal; font-weight: 600; }
 
  /* ── Benefits grid ── */
  .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 8px;
  }
  @media (max-width: 900px) { .benefits-grid { grid-template-columns: repeat(2,1fr); } }
  @media (max-width: 540px) { .benefits-grid { grid-template-columns: 1fr; } }
 
  .benefit-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 26px 22px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.22s, transform 0.22s;
  }
  .benefit-card::before {
    content: "";
    position: absolute; top: 0; left: 0;
    width: 4px; height: 100%;
    background: #2a2a2a;
    transition: background 0.22s;
  }
  .benefit-card:hover { border-color: #F5C414; transform: translateY(-3px); }
  .benefit-card:hover::before { background: #F5C414; }
  .benefit-num {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 13px; font-weight: 900; letter-spacing: 2px;
    color: #F5C414; text-transform: uppercase;
    margin-bottom: 10px; display: block;
  }
  .benefit-title {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 19px; font-weight: 900; color: #fff;
    text-transform: uppercase; letter-spacing: 0.4px;
    margin-bottom: 8px;
  }
  .benefit-text {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 13px; color: #888; line-height: 1.75;
  }
 
  /* ── Two-col text + callout ── */
  .twocol-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (max-width: 860px) { .twocol-grid { grid-template-columns: 1fr; } }
 
  /* ── Callout / warning box ── */
  .callout-box {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 4px;
    padding: 28px 26px;
  }
  .callout-box.gold  { border-top: 3px solid #F5C414; }
  .callout-box.red   { border-top: 3px solid #e63946; }
  .callout-box.green { border-top: 3px solid #2cb67d; }
 
  .callout-label {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
    text-transform: uppercase; margin-bottom: 12px; display: block;
  }
  .callout-box.gold  .callout-label { color: #F5C414; }
  .callout-box.red   .callout-label { color: #e63946; }
  .callout-box.green .callout-label { color: #2cb67d; }
 
  .callout-title {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 20px; font-weight: 900; color: #fff;
    text-transform: uppercase; letter-spacing: 0.4px;
    margin-bottom: 12px;
  }
  .callout-text {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 13px; color: #888; line-height: 1.8;
  }
  .callout-text + .callout-text { margin-top: 10px; }
 
  /* ── Compound comparison table ── */
  .compound-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 8px;
    font-family: "Outfit","Segoe UI",sans-serif;
  }
  .compound-table th {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 14px; font-weight: 900; text-transform: uppercase;
    letter-spacing: 0.5px; color: #F5C414;
    padding: 12px 16px; text-align: left;
    border-bottom: 1px solid #2a2a2a;
    background: #161616;
  }
  .compound-table td {
    font-size: 13px; color: #aaa;
    padding: 12px 16px;
    border-bottom: 1px solid #1f1f1f;
    vertical-align: top;
  }
  .compound-table tr:last-child td { border-bottom: none; }
  .compound-table tr:hover td { background: #1e1e1e; color: #ccc; }
  .compound-table td:first-child {
    font-family: "Barlow Condensed",sans-serif;
    font-size: 16px; font-weight: 900; color: #fff;
    text-transform: uppercase;
  }
  .badge-pill {
    display: inline-block;
    font-size: 10px; font-weight: 700; letter-spacing: 1px;
    text-transform: uppercase; padding: 3px 8px; border-radius: 2px;
  }
  .badge-pill.gold  { background: rgba(245,196,20,0.15); color: #F5C414; }
  .badge-pill.red   { background: rgba(230,57,70,0.15); color: #e63946; }
  .badge-pill.green { background: rgba(44,182,125,0.15); color: #2cb67d; }
 
  /* ── Side effects checklist ── */
  .check-list {
    list-style: none; padding: 0; margin: 0;
    display: flex; flex-direction: column; gap: 10px;
  }
  .check-list li {
    display: flex; gap: 12px; align-items: flex-start;
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 13px; color: #999; line-height: 1.6;
  }
  .check-list li::before {
    content: "";
    flex-shrink: 0;
    width: 18px; height: 18px; margin-top: 1px;
    border-radius: 2px;
    background: rgba(245,196,20,0.12);
    border: 1px solid rgba(245,196,20,0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23F5C414' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 12px;
  }
  .check-list li.warn::before {
    background-color: rgba(230,57,70,0.1);
    border-color: rgba(230,57,70,0.3);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cline x1='3' y1='3' x2='9' y2='9' stroke='%23e63946' stroke-width='1.8' stroke-linecap='round'/%3E%3Cline x1='9' y1='3' x2='3' y2='9' stroke='%23e63946' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  }
 
  /* ── Section divider label ── */
  .section-label-strip {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px;
  }
  .section-label-strip::after {
    content: "";
    flex: 1; height: 1px; background: #222;
  }
  .section-label-text {
    font-family: "Outfit","Segoe UI",sans-serif;
    font-size: 11px; font-weight: 700; letter-spacing: 3px;
    text-transform: uppercase; color: #F5C414;
    white-space: nowrap;
  }