:root {
  --supp-orange: var(--orange);
  --supp-orange-light: #ff8a6b;
  --supp-orange-on-light: var(--orange-on-light);
  --supp-black: var(--ink);
  --supp-charcoal: var(--ink-soft);
  --supp-panel: var(--ink-soft);
  --supp-line: rgba(255, 255, 255, 0.14);
  --supp-muted: var(--muted);
}

.desktop-nav a[href="/supplement-discounts"][aria-current="page"] {
  color: #fff;
}

.mobile-menu-grid a[href="/supplement-discounts"] {
  color: rgb(215, 211, 204);
}

.supp-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(76px, 10vw, 132px) 0 clamp(62px, 8vw, 105px);
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(255, 75, 31, 0.19), transparent 31%),
    linear-gradient(135deg, #080808 0%, #151515 64%, #080808 100%);
}

.supp-hero::after {
  position: absolute;
  right: -100px;
  bottom: -165px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 75, 31, 0.22);
  border-radius: 50%;
  content: "";
}

.supp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
}

.supp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: #cfcfcf;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.supp-breadcrumbs a { color: #fff; }

.supp-kicker,
.supp-section-kicker {
  margin: 0 0 14px;
  color: var(--supp-orange-light);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.supp-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.supp-hero h1 span { color: var(--supp-orange); }

.supp-hero-copy {
  max-width: 720px;
  margin: 26px 0 0;
  color: #e2e2e2;
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
  line-height: 1.65;
}

.supp-code-card {
  position: relative;
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top: 5px solid var(--supp-orange);
  border-radius: 18px;
  background: rgba(17, 17, 17, 0.9);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

.supp-code-card p { margin: 0; color: #d3d3d3; }

.supp-code-card strong {
  display: block;
  margin: 13px 0 6px;
  color: #fff;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 3rem);
  letter-spacing: 0.035em;
  overflow-wrap: normal;
  white-space: nowrap;
}

.supp-code-note {
  margin-top: 14px !important;
  color: #aaa !important;
  font-size: 0.78rem;
  line-height: 1.45;
}

.supp-disclosure {
  color: #242424;
  background: #fff3ea;
  border-bottom: 1px solid #ffd6bb;
}

.supp-disclosure .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 18px;
  padding-bottom: 18px;
}

.supp-disclosure strong {
  padding: 5px 9px;
  color: #fff;
  background: #111;
  border-radius: 4px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supp-disclosure p { margin: 0; line-height: 1.55; }

.supp-quick-nav {
  border-top: 1px solid var(--supp-line);
  border-bottom: 1px solid var(--supp-line);
  color: #fff;
  background: #0d0d0d;
}

.supp-quick-nav-inner {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 14px 0;
}

.supp-quick-nav strong {
  flex: 0 0 auto;
  color: var(--supp-orange-light);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.supp-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.supp-quick-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  color: #d7d3cc;
  background: rgba(255, 255, 255, 0.035);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  white-space: nowrap;
}

.supp-quick-links a:hover,
.supp-quick-links a:focus-visible {
  border-color: var(--supp-orange);
  color: #fff;
  background: rgba(255, 75, 31, 0.13);
  outline: none;
}

.supp-intro {
  padding: clamp(62px, 8vw, 104px) 0 clamp(40px, 6vw, 72px);
  color: #fff;
  background: var(--supp-black);
}

.supp-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: start;
}

.supp-intro h2,
.supp-products h2,
.supp-guidance h2,
.supp-consult h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.supp-intro h2 span,
.supp-guidance h2 span { color: var(--supp-orange); }

.supp-intro-copy p {
  margin: 0 0 17px;
  color: #d1d1d1;
  font-size: 1.04rem;
  line-height: 1.72;
}

.supp-products {
  padding: 34px 0 clamp(70px, 9vw, 118px);
  color: #fff;
  background: var(--supp-black);
}

.supp-products-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.supp-products-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--supp-muted);
  line-height: 1.65;
}

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

.supp-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--supp-line);
  border-radius: 16px;
  background: var(--supp-panel);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.supp-product-card[id] { scroll-margin-top: 166px; }

.supp-product-card--linked { cursor: pointer; }

.supp-product-card--linked:hover {
  border-color: rgba(255, 75, 31, 0.72);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  transform: translateY(-3px);
}

.supp-product-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: #e9e9e9;
}

.supp-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.supp-product-card:hover .supp-product-image img { transform: scale(1.025); }

.supp-product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  color: #111;
  background: var(--supp-orange);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.supp-product-body {
  display: flex;
  height: 100%;
  flex-direction: column;
  padding: 22px;
}

.supp-product-body h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: Oswald, Impact, sans-serif;
  font-size: 1.6rem;
  line-height: 1.08;
}

.supp-product-body p {
  margin: 0 0 20px;
  color: #c8c8c8;
  line-height: 1.58;
}

.supp-product-body .button {
  width: 100%;
  margin-top: auto;
  text-align: center;
}

.supp-range-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 75, 31, 0.42);
  border-radius: 16px;
  background: linear-gradient(120deg, #151515 0%, #211208 100%);
}

.supp-range-cta h3 {
  margin: 0;
  color: #fff;
  font-family: Oswald, Impact, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.supp-range-cta p:not(.supp-section-kicker) {
  max-width: 780px;
  margin: 10px 0 0;
  color: #c8c8c8;
  line-height: 1.6;
}

.supp-range-cta .button { white-space: nowrap; }

.supp-guidance {
  padding: clamp(64px, 9vw, 116px) 0;
  color: #111;
  background: var(--paper);
}

.supp-guidance-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(38px, 8vw, 100px);
  align-items: center;
}

.supp-guidance-copy > p {
  margin: 20px 0 0;
  color: #444;
  font-size: 1.04rem;
  line-height: 1.7;
}

.supp-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.supp-checklist li {
  position: relative;
  padding: 17px 18px 17px 48px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.supp-checklist li::before {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--supp-orange);
  content: "✓";
  font-weight: 900;
}

.supp-checklist strong { display: block; margin-bottom: 3px; }
.supp-checklist span { color: #5c5c5c; line-height: 1.5; }

.supp-consult {
  padding: clamp(62px, 8vw, 98px) 0;
  color: #fff;
  background: linear-gradient(120deg, #111 0%, #1a1a1a 70%, #321509 100%);
}

.supp-consult-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.supp-consult p {
  max-width: 690px;
  margin: 18px 0 0;
  color: #d4d4d4;
  line-height: 1.65;
}

.supp-consult-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.supp-legal {
  padding: 24px 0 88px;
  color: #aaa;
  background: var(--supp-black);
  font-size: 0.78rem;
  line-height: 1.6;
}

.supp-legal p { margin: 0; }

@media (max-width: 980px) {
  .supp-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .supp-products-heading { display: block; }
  .supp-products-heading > p { margin-top: 18px; }
}

@media (max-width: 760px) {
  .supp-hero-grid,
  .supp-intro-grid,
  .supp-guidance-grid,
  .supp-consult-grid { grid-template-columns: 1fr; }

  .supp-hero { padding-top: 50px; }
  .supp-quick-nav { position: sticky; z-index: 74; top: 68px; }
  .supp-quick-nav-inner { display: block; padding: 10px 0 11px; }
  .supp-quick-nav strong { display: block; margin-bottom: 8px; font-size: 0.6rem; }
  .supp-quick-links { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 2px; scrollbar-width: none; }
  .supp-quick-links::-webkit-scrollbar { display: none; }
  .supp-quick-links a { min-height: 38px; padding: 7px 12px; font-size: 0.64rem; }
  .supp-code-card { max-width: 520px; }
  .supp-range-cta { grid-template-columns: 1fr; }
  .supp-range-cta .button { width: 100%; text-align: center; white-space: normal; }
  .supp-consult-actions { justify-content: flex-start; }
  .supp-consult-actions .button { width: 100%; text-align: center; }
  .supp-legal { padding-bottom: 120px; }
}

@media (max-width: 560px) {
  .supp-product-grid { grid-template-columns: 1fr; }
  .supp-disclosure .wrap { grid-template-columns: 1fr; }
  .supp-hero h1 { font-size: clamp(2.8rem, 15vw, 4.6rem); }
}

@media (prefers-reduced-motion: reduce) {
  .supp-product-card { transition: none; }
  .supp-product-card--linked:hover { transform: none; }
  .supp-product-image img { transition: none; }
}

/* Keep the supplement page within the shared Sidhu Fitness colour system. */
.supp-guidance h2 span,
.supp-guidance .supp-section-kicker,
.supp-checklist li::before {
  color: var(--supp-orange-on-light);
}
