:root {
  /* --color-primary: #f9dda0; */
  --color-primary: #f5a817;
  --color-primary-light: #ffc14d;
  --color-black: #050505;
  --color-dark: #101010;
  --color-card: #181818;
  --color-white: #ffffff;
  --color-text: #121212;
  --color-muted: #707070;
  --color-border: #dedede;
  --color-surface: #f7f7f7;
  --font-body: "Inter", sans-serif;
  --font-display: "Barlow Condensed", sans-serif;
  --radius: 8px;
  --shadow: 0 12px 34px rgba(0, 0, 0, .1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-text);
  font-family: var(--font-body);
  background: var(--color-white);
  overflow-x: hidden;
  width: 100%;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(0, 0, 0, .08), rgba(0, 0, 0, .08)),
    url("../images/banner/loader-bg.png") center center / cover no-repeat,
    #000;
  color: #fff;
  opacity: 1;
  padding: clamp(18px, 4vh, 44px) 16px;
  visibility: visible;
  transition: opacity .55s ease, visibility .55s ease;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  inset: -16%;
  background: radial-gradient(circle at 50% 44%, rgba(245, 168, 23, .08), transparent 30%);
  opacity: .8;
  animation: loaderStreakMove 5.8s ease-in-out infinite alternate;
}

.site-loader::after {
  inset: -24%;
  background: radial-gradient(circle at 50% 45%, rgba(0, 0, 0, 0), rgba(0, 0, 0, .62) 72%);
  opacity: .7;
  filter: none;
  animation-duration: 7.2s;
  animation-direction: alternate-reverse;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-seen .site-loader {
  display: none;
}

.loader-smoke {
  position: absolute;
  width: clamp(160px, 18vw, 300px);
  height: clamp(95px, 11vw, 180px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .16), rgba(245, 168, 23, .08) 36%, transparent 70%);
  filter: blur(24px);
  opacity: .28;
  animation: loaderSmoke 5s ease-in-out infinite alternate;
}

.loader-smoke-left {
  left: 31%;
  top: 36%;
}

.loader-smoke-right {
  right: 32%;
  top: 35%;
  animation-delay: .7s;
}

.site-loader-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  width: min(820px, calc(100vw - 32px));
  max-height: calc(100dvh - 32px);
  text-align: center;
  transform: translateY(-4px);
}

.loader-logo-ring {
  position: absolute;
  top: clamp(-135px, -11vw, -76px);
  width: clamp(250px, 31vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(245, 168, 23, .7);
  border-radius: 50%;
  box-shadow:
    0 0 18px rgba(245, 168, 23, .5),
    0 0 60px rgba(245, 168, 23, .22),
    inset 0 0 42px rgba(245, 168, 23, .08);
  animation: loaderRingGlow 2.4s ease-in-out infinite;
}

.loader-logo-ring span {
  position: absolute;
  inset: 7%;
  border: 1px dashed rgba(245, 168, 23, .46);
  border-radius: inherit;
  animation: loaderSpin 10s linear infinite;
}

.loader-logo-ring span:nth-child(2) {
  inset: 18.5%;
  border-style: solid;
  border-color: rgba(255, 255, 255, .055);
  animation-direction: reverse;
}

.loader-logo {
  position: relative;
  top: clamp(-20px, -1.6vw, -8px);
  width: clamp(220px, 26vw, 341px);
  max-height: clamp(120px, 15vw, 175px);
  /* margin-top: 15px; */
  margin-bottom: clamp(70px, 9vw, 118px);
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(245, 168, 23, .18)) drop-shadow(0 18px 32px rgba(0, 0, 0, .8));
}

.site-loader-content p {
  margin: 0 0 25px;
  color: var(--color-primary);
  max-width: 100%;
  font-size: clamp(.78rem, 1.35vw, 1.24rem);
  font-weight: 900;
  letter-spacing: clamp(.18em, .55vw, .48em);
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(245, 168, 23, .36);
}

.loader-progress {
  display: grid;
  grid-template-columns: minmax(220px, 700px) auto;
  gap: 14px;
  align-items: center;
  width: min(820px, calc(100vw - 44px));
}

.loader-progress-track {
  height: 15px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, .06);
}

.loader-progress-track span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ffe28c 0%, #f5a817 55%, #ffbf17 100%);
  box-shadow: 0 0 18px rgba(245, 168, 23, .72), 0 0 38px rgba(245, 168, 23, .26);
  transition: width .18s ease;
}

.loader-progress-track span::after {
  content: "";
  float: right;
  width: 18px;
  height: 18px;
  margin-top: -2px;
  margin-right: -4px;
  border-radius: 50%;
  background: #ffbf17;
  box-shadow: 0 0 16px rgba(245, 168, 23, .9);
}

.loader-progress b {
  color: var(--color-primary);
  font-size: 1.22rem;
  font-weight: 900;
}

.loader-dots {
  display: flex;
  gap: 20px;
  margin-top: 31px;
}

.loader-dots span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .32);
  box-shadow: 0 0 14px rgba(255, 255, 255, .14);
}

.loader-dots span:nth-child(2) {
  background: var(--color-primary);
  box-shadow: 0 0 20px rgba(245, 168, 23, .82);
}

.loader-features {
  display: grid;
  grid-template-columns: repeat(4, auto);
  gap: 0;
  align-items: center;
  width: min(760px, calc(100vw - 34px));
  margin-top: clamp(36px, 7.4vw, 80px);
}

.loader-features div {
  display: grid;
  grid-template-columns: 44px auto;
  gap: clamp(8px, 1.1vw, 14px);
  align-items: center;
  min-width: 0;
  padding: 0 clamp(12px, 2.2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, .2);
  text-align: left;
}

.loader-features div:last-child {
  border-right: 0;
}

.loader-features i {
  color: var(--color-primary);
  font-size: clamp(1.45rem, 2.6vw, 2.18rem);
  filter: drop-shadow(0 0 12px rgba(245, 168, 23, .34));
}

.loader-features span {
  color: #fff;
  font-size: clamp(.66rem, 1vw, .82rem);
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1.45;
  text-transform: uppercase;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderStreakMove {
  to {
    transform: translate3d(3%, -1%, 0);
  }
}

@keyframes loaderRingGlow {

  0%,
  100% {
    box-shadow: 0 0 18px rgba(245, 168, 23, .45), 0 0 60px rgba(245, 168, 23, .2), inset 0 0 36px rgba(245, 168, 23, .08);
  }

  50% {
    box-shadow: 0 0 30px rgba(245, 168, 23, .7), 0 0 86px rgba(245, 168, 23, .32), inset 0 0 46px rgba(245, 168, 23, .12);
  }
}

@keyframes loaderSmoke {
  to {
    opacity: .38;
    transform: translate3d(18px, -10px, 0) scale(1.08);
  }
}

@media (max-width: 767.98px) {
  .site-loader {
    background-position: center center;
    padding: 20px 14px;
  }

  .site-loader-content {
    width: min(520px, calc(100vw - 28px));
  }

  .loader-logo-ring {
    top: -70px;
    width: clamp(210px, 70vw, 270px);
  }

  .loader-logo {
    top: -8px;
    width: min(270px, 78vw);
    max-height: 138px;
    margin-top: 0;
    margin-bottom: clamp(46px, 13vw, 74px);
  }

  .site-loader-content p {
    margin-bottom: 18px;
    font-size: clamp(.66rem, 2.7vw, .78rem);
    letter-spacing: clamp(.08em, 1.8vw, .2em);
    line-height: 1.6;
  }

  .loader-progress-track {
    height: 12px;
  }

  .loader-progress {
    grid-template-columns: 1fr auto;
    gap: 10px;
    width: min(520px, calc(100vw - 34px));
  }

  .loader-progress b {
    font-size: .95rem;
  }

  .loader-dots {
    gap: 14px;
    margin-top: 22px;
  }

  .loader-dots span {
    width: 12px;
    height: 12px;
  }

  .loader-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 0;
    width: 100%;
    margin-top: clamp(28px, 8vw, 38px);
  }

  .loader-features div {
    grid-template-columns: 30px auto;
    padding: 0 10px;
  }

  .loader-features div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 430px) {
  .loader-logo-ring {
    top: -58px;
    width: 210px;
  }

  .loader-logo {
    width: min(225px, 74vw);
    max-height: 112px;
    margin-bottom: 42px;
  }

  .loader-progress {
    grid-template-columns: 1fr;
  }

  .loader-progress b {
    justify-self: center;
  }

  .loader-features {
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
  }

  .loader-features div {
    border-right: 0;
    justify-content: center;
  }
}

@media (max-height: 720px) and (min-width: 768px) {
  .site-loader {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .loader-logo-ring {
    top: -88px;
    width: 280px;
  }

  .loader-logo {
    width: 250px;
    max-height: 128px;
    margin-bottom: 58px;
  }

  .site-loader-content p {
    margin-bottom: 16px;
    font-size: .86rem;
  }

  .loader-dots {
    margin-top: 18px;
  }

  .loader-features {
    margin-top: 28px;
  }
}

@media (max-height: 620px) {

  .loader-smoke,
  .loader-logo-ring span:nth-child(2),
  .loader-dots {
    display: none;
  }

  .loader-logo-ring {
    top: -42px;
    width: 190px;
  }

  .loader-logo {
    width: 190px;
    max-height: 92px;
    margin-bottom: 30px;
  }

  .loader-features {
    margin-top: 22px;
  }
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 9990;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 0 clamp(22px, 5vh, 52px) clamp(18px, 5vw, 96px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .28s ease, visibility .28s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cookie-consent-backdrop {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .68), rgba(0, 0, 0, .55));
  backdrop-filter: blur(3px);
}

.cookie-card {
  position: relative;
  z-index: 1;
  width: min(430px, calc(100vw - 36px));
  padding: 22px 30px 20px;
  border: 1px solid rgba(245, 168, 23, .86);
  border-radius: 13px;
  background:
    radial-gradient(circle at 14% 0%, rgba(245, 168, 23, .13), transparent 30%),
    linear-gradient(135deg, rgba(20, 20, 20, .98), rgba(5, 5, 5, .97));
  box-shadow: 0 28px 70px rgba(0, 0, 0, .48), inset 0 1px 0 rgba(255, 255, 255, .05);
  color: #fff;
  transform: translateY(18px);
  transition: transform .28s ease;
}

.cookie-consent.is-visible .cookie-card {
  transform: translateY(0);
}

.cookie-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 9px;
  color: var(--color-primary);
  font-size: 1.55rem;
}

.cookie-card h2 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1;
}

.cookie-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: .88rem;
  line-height: 1.55;
}

.cookie-divider {
  position: relative;
  height: 1px;
  margin: 14px 0 15px;
  background: rgba(255, 255, 255, .16);
}

.cookie-divider::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 28px;
  height: 2px;
  border-radius: 999px;
  background: var(--color-primary);
  box-shadow: 0 0 14px rgba(245, 168, 23, .75);
}

.cookie-actions {
  display: grid;
  gap: 9px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border-radius: 6px;
  padding: 10px 14px;
  font: inherit;
  font-size: .82rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  border: 0;
  background: linear-gradient(180deg, #ffc84d 0%, #f5a817 100%);
  color: #070707;
  box-shadow: 0 10px 26px rgba(245, 168, 23, .22);
}

.cookie-btn-light {
  border: 1px solid rgba(255, 255, 255, .74);
  background: transparent;
  color: #fff;
}

.cookie-btn-outline {
  border: 1px solid rgba(245, 168, 23, .72);
  background: transparent;
  color: var(--color-primary);
}

.cookie-policy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 15px;
  color: rgba(255, 255, 255, .84);
  font-size: .78rem;
}

.cookie-policy i {
  color: var(--color-primary);
}

.cookie-customize {
  display: none;
  gap: 8px;
  margin: -3px 0 12px;
}

.cookie-customize.is-open {
  display: grid;
}

.cookie-customize label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 11px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .035);
}

.cookie-customize span,
.cookie-customize strong,
.cookie-customize small {
  display: block;
}

.cookie-customize strong {
  color: #fff;
  font-size: .78rem;
}

.cookie-customize small {
  margin-top: 3px;
  color: rgba(255, 255, 255, .64);
  font-size: .68rem;
  line-height: 1.35;
}

.cookie-customize input {
  flex: 0 0 auto;
  accent-color: var(--color-primary);
}

@media (max-width: 767.98px) {
  .cookie-consent {
    align-items: flex-end;
    justify-content: center;
    padding: 16px 14px 22px;
  }

  .cookie-card {
    width: min(410px, 100%);
    padding: 20px 18px 19px;
    border-radius: 12px;
  }

  .cookie-card p {
    font-size: .82rem;
  }

}

@media (max-height: 650px) {
  .cookie-consent {
    align-items: center;
    padding: 16px;
  }

  .cookie-card {
    max-height: calc(100dvh - 32px);
    overflow-y: auto;
  }
}

@keyframes alertSlideOut {
  to {
    opacity: 0;
    transform: translateY(-14px);
  }
}

.alert.is-hiding,
.track-alert.is-hiding {
  pointer-events: none;
  animation: alertSlideOut .28s ease both;
}

html,
body {
  max-width: 100%;
  min-width: 0;
}

main section {
  position: relative;
}

main section::selection {
  color: var(--color-black);
  background: var(--color-primary);
}

body.panel-open {
  overflow: hidden;
}

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

img {
  max-width: 100%;
}

.section-space {
  padding: 62px 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.testimonial-stats strong,
.testimonial-heading h2,
.section-heading h2,
.why-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.7rem);
  font-weight: 700;
}

.section-heading h2,
.why-intro h2 {
  overflow: hidden;
}

.animated-heading .heading-word {
  display: inline-block;
  white-space: nowrap;
}

.animated-heading .heading-char {
  display: inline-block;
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

.animated-heading.is-visible .heading-char,
.animated-heading.heading-ready .heading-char {
  animation: headingCharReveal .65s cubic-bezier(.2, .82, .24, 1) both;
  animation-delay: calc(var(--char-index, 0) * 28ms);
}

.animated-heading .heading-space {
  display: inline-block;
  width: .28em;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
  background: rgba(0, 0, 0, .84);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease, backdrop-filter .28s ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  background: rgba(3, 3, 3, .95);
  border-bottom-color: rgba(255, 255, 255, .14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--color-white);
}

.brand {
  width: 150px;
  height: 70px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.footer-brand img {
  width: 138px;
  height: 76px;
}

.navbar .nav-link {
  position: relative;
  padding: 10px 0 !important;
  color: var(--color-white);
  font-size: .86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  height: 2px;
  background: var(--color-primary);
  transition: .25s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-primary);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  right: 0;
  left: 0;
}

.icon-btn {
  position: relative;
  padding: 5px;
  color: var(--color-white);
  font-size: 1.15rem;
  border: 0;
  background: transparent;
  transition: color .25s, transform .25s;
}

.icon-btn:hover {
  color: var(--color-primary);
  transform: translateY(-2px);
}

.cart-btn span {
  position: absolute;
  top: -2px;
  right: -6px;
  display: grid;
  width: 16px;
  height: 16px;
  place-items: center;
  color: var(--color-black);
  font-size: .6rem;
  font-weight: 800;
  background: var(--color-primary);
  border-radius: 50%;
}

.hero {
  position: relative;
  /* min-height: 704px; */
  height: 800px;
  color: var(--color-white);
  background: var(--color-black) url("../images/hero-performance.png") center bottom/cover no-repeat;
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: -25%;
  background: linear-gradient(120deg, transparent 31%, rgba(245, 168, 23, .08) 35%, rgba(255, 193, 77, .44) 36%, rgba(245, 168, 23, .07) 37%, transparent 42%, transparent 49%, rgba(255, 193, 77, .35) 50%, transparent 52%, transparent 59%, rgba(255, 193, 77, .32) 60%, transparent 62%);
  transform: translate3d(-46%, 0, 0) skewX(-8deg);
  animation: heroLightSweep 8.5s cubic-bezier(.55, 0, .28, 1) infinite;
  mix-blend-mode: screen;
  pointer-events: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 76% 48%, rgba(245, 168, 23, .12), transparent 25%), linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .9) 30%, rgba(0, 0, 0, .28) 64%, rgba(0, 0, 0, .05));
  animation: heroVignetteBreath 7s ease-in-out infinite alternate;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 92px;
}

/* .hero-content.container {
  max-width: 1480px;
} */

.min-vh-hero {
  /* min-height: 486px; */
  min-height: 600px;
}

.hero h1 {
  max-width: 570px;
  margin: 0;
  font-family: var(--font-display);
  /* font-size: clamp(4.05rem, 6.2vw, 6.25rem); */
  font-size: clamp(4.05rem, 6.2vw, 7rem);
  font-weight: 800;
  line-height: .82;
  text-transform: uppercase;
  text-shadow: 0 7px 22px rgba(0, 0, 0, .45);
}

.hero h1 span {
  display: block;
  color: var(--color-primary);
  text-shadow: 0 0 18px rgba(245, 168, 23, .2), 0 8px 22px rgba(0, 0, 0, .42);
  animation: heroGoldFocus 2.4s ease both .55s;
}

.hero-copy {
  max-width: 430px;
  margin: 22px 0 0;
  color: #f0f0f0;
  font-size: 1.06rem;
  font-weight: 500;
  line-height: 1.7;
}

.hero-product-stage {
  position: absolute;
  top: 94px;
  right: 10px;
  width: min(800px, 54vw);
  height: 610px;
  pointer-events: none;
}

.hero-product-stage::before {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 14px;
  width: 480px;
  height: 80px;
  background: radial-gradient(ellipse, rgba(0, 0, 0, .66), transparent 68%);
  filter: blur(6px);
}

.hero-shirt-logo {
  position: absolute;
  top: 246px;
  right: 254px;
  width: 192px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, .45));
  opacity: .96;
}

.hero-bottle {
  position: absolute;
  object-fit: contain;
  filter: drop-shadow(0 20px 24px rgba(0, 0, 0, .55));
  animation: productFloat 5.5s ease-in-out infinite;
}

.hero-bottle-lg {
  right: 124px;
  bottom: 3px;
  width: 170px;
  height: 236px;
  z-index: 2;
}

.hero-bottle-md {
  right: 8px;
  bottom: 4px;
  width: 132px;
  height: 184px;
  filter: sepia(.28) saturate(1.35) drop-shadow(0 18px 22px rgba(0, 0, 0, .55));
  animation-delay: .55s;
}

.hero-bottle-sm {
  right: 302px;
  bottom: 4px;
  width: 112px;
  height: 158px;
  filter: brightness(.62) contrast(1.2) drop-shadow(0 16px 18px rgba(0, 0, 0, .55));
  animation-delay: .25s;
}

.btn {
  padding: 15px 31px;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: 5px;
}

.btn i {
  margin-left: 10px;
}

.btn-gold {
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border: 0;
  box-shadow: 0 10px 24px rgba(245, 168, 23, .18);
  transition: transform .25s, box-shadow .25s, filter .25s;
}

.btn-gold:hover {
  color: var(--color-black);
  background: var(--color-primary-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(245, 168, 23, .28);
  filter: saturate(1.08);
}

button.is-loading,
button:disabled {
  cursor: wait;
  opacity: .78;
  pointer-events: none;
}

button.is-loading span,
.postcode-action-btn span,
[data-place-order] span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

button.is-loading i,
button.is-loading .fa-spinner {
  margin-left: 0;
}

.btn-outline-light-custom {
  color: var(--color-white);
  border: 1px solid #777;
  transition: transform .25s, border-color .25s, background .25s;
}

.btn-outline-light-custom:hover {
  color: var(--color-black);
  background: var(--color-white);
  transform: translateY(-2px);
}

.hero-feature-slider {
  max-width: 650px;
  border-top: 1px solid rgba(255, 255, 255, .24);
}

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

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 23px 0;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, .2);
  animation: heroFeatureIn .75s cubic-bezier(.2, .82, .24, 1) both;
}

.hero-feature-slide:nth-child(1) .hero-feature {
  animation-delay: .58s;
}

.hero-feature-slide:nth-child(2) .hero-feature {
  animation-delay: .68s;
}

.hero-feature-slide:nth-child(3) .hero-feature {
  animation-delay: .78s;
}

.hero-feature-pagination {
  display: none;
}

.hero-feature i {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-primary);
  font-size: 20px;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(245, 168, 23, 0);
  animation: heroIconPulse 3.4s ease-in-out infinite;
}

.hero-feature span {
  font-size: .7rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.categories {
  background: linear-gradient(180deg, #fff 0%, #f8f8f8 100%);
}

.btn-light-outline {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  box-shadow: 0 3px 10px rgba(0, 0, 0, .04);
}

.category-card {
  position: relative;
  min-height: 230px;
  padding: 20px;
  background: var(--color-white);
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .04);
  transition: transform .28s cubic-bezier(.2, .82, .24, 1), box-shadow .28s, border-color .28s;
  overflow: hidden;
}

.category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245, 168, 23, .09), transparent 42%);
  opacity: 0;
  transition: opacity .25s;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: rgba(245, 168, 23, .45);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .13);
}

.category-card:hover::before {
  opacity: 1;
}

.category-card>img {
  display: block;
  /* width: 130px; */
  width: 180px;
  height: 160px;
  margin: 0 auto 8px;
  object-fit: contain;
}

.category-card>img.category-art {
  width: 175px;
  height: 160px;
}

.wide-card>img.syringe-art {
  width: min(360px, 100%);
  height: 162px;
}

.category-card>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.category-card h3 {
  margin: 0;
  font-size: .9rem;
  font-weight: 700;
}

.category-card div>i {
  display: grid;
  min-width: 28px;
  height: 28px;
  place-items: center;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
  transition: color .25s, background .25s, transform .25s;
}

.category-card:hover div>i {
  color: var(--color-black);
  background: var(--color-primary);
  transform: translateX(3px);
}

.why-section {
  background: var(--color-white);
  box-shadow: inset 0 1px 0 #ededed, inset 0 -1px 0 #ededed;
}

.why-intro p:last-child {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: .85rem;
  line-height: 1.7;
}

.benefit {
  height: 100%;
  padding: 10px 20px;
  text-align: center;
  border-right: 1px solid var(--color-border);
  transition: transform .28s, background .28s, box-shadow .28s;
}

.benefit:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, rgba(245, 168, 23, .07), transparent);
  border-right: 1px solid var(--color-primary);
}

.benefit>i {
  color: var(--color-primary);
  font-size: 42px;
  transition: transform .28s, filter .28s;
}

.benefit:hover>i {
  transform: translateY(-3px) scale(1.08);
  filter: drop-shadow(0 8px 14px rgba(245, 168, 23, .24));
}

.benefit h3 {
  margin: 15px 0 10px;
  font-size: 1rem;
  font-weight: 700;
}

.benefit p {
  margin: 0;
  color: var(--color-muted);
  font-size: .78rem;
  line-height: 1.55;
}

.bestsellers {
  position: relative;
  color: var(--color-white);
  background: radial-gradient(circle at 82% 12%, #292929, var(--color-black) 48%);
  overflow: hidden;
}

.bestsellers::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 8%, rgba(245, 168, 23, .06) 18%, transparent 28%, transparent 68%, rgba(245, 168, 23, .05) 78%, transparent);
  pointer-events: none;
}

.bestsellers .container {
  position: relative;
  z-index: 1;
}

.product-slider {
  position: relative;
}

.product-track {
  flex-wrap: nowrap;
  padding-bottom: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

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

.product-track>.bestseller-product-column {
  flex-shrink: 0;
  scroll-snap-align: start;
}

@media (min-width: 992px) {
  .product-track>.bestseller-product-column {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

.slider-arrow {
  position: absolute;
  top: 53%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-white);
  background: rgba(0, 0, 0, .78);
  border: 1px solid #5f5f5f;
  border-radius: 50%;
  transition: color .25s, border-color .25s, transform .25s;
}

.slider-arrow[hidden] {
  display: none;
}

.slider-arrow:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.slider-prev {
  left: -58px;
}

.slider-next {
  right: -58px;
}

.section-heading.light a {
  color: var(--color-white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-heading.light a i {
  margin-left: 10px;
  color: var(--color-primary);
}

.product-card {
  position: relative;
  height: 100%;
  min-height: 292px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid #484848;
  border-radius: var(--radius);
  transition: transform .28s cubic-bezier(.2, .82, .24, 1), border-color .28s, box-shadow .28s, background .28s;
  overflow: hidden;
  backdrop-filter: blur(4px);
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .12) 42%, transparent 64%);
  transform: translateX(-120%);
  transition: transform .55s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-9px);
  border-color: var(--color-primary);
  box-shadow: 0 24px 44px rgba(0, 0, 0, .34);
}

.product-card.is-out-of-stock {
  border-color: rgba(255, 255, 255, .18);
  opacity: .82;
}

.product-card:hover::before {
  transform: translateX(120%);
}

.product-card img {
  display: block;
  width: 145px;
  height: 180px;
  object-fit: contain;
}

.bestsellers .product-card img,
.related-products .product-card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* Error pages */
.error-page {
  min-height: 100vh;
  margin: 0;
  color: #fff;
  background:
    radial-gradient(circle at 50% 38%, rgba(245, 168, 23, .14), transparent 30%),
    linear-gradient(135deg, #050505 0%, #151515 55%, #090909 100%);
}

.error-screen {
  position: relative;
  min-height: 100vh;
  padding: 130px 24px 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.error-screen::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(245, 168, 23, .13);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255, 255, 255, .018), 0 0 0 140px rgba(245, 168, 23, .018);
}

.error-brand {
  position: absolute;
  top: 28px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}

.error-brand img {
  display: block;
  width: 150px;
  max-height: 72px;
  object-fit: contain;
}

.error-card {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding: 46px 32px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, .075), rgba(255, 255, 255, .025));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .48);
  backdrop-filter: blur(10px);
}

.error-eyebrow {
  margin: 0 0 4px;
  color: var(--color-primary);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.error-code {
  margin: -4px 0 -20px;
  color: transparent;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(8rem, 24vw, 13rem);
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 2px rgba(245, 168, 23, .65);
  text-shadow: 0 0 38px rgba(245, 168, 23, .12);
}

.error-card h1 {
  margin: 0;
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.error-message {
  max-width: 470px;
  margin: 18px auto 0;
  color: #bcbcbc;
  font-size: .92rem;
  line-height: 1.7;
}

.error-countdown {
  margin: 25px 0 22px;
  color: #d8d8d8;
  font-size: .78rem;
}

.error-countdown strong {
  color: var(--color-primary);
  font-size: 1rem;
}

.error-page .btn-gold,
.error-page .btn-gold:hover,
.error-page .btn-gold:active {
  transform: none;
  transition: none;
  filter: none;
}

.error-page .btn-gold::after {
  display: none;
}

@media (max-width: 575px) {
  .error-screen {
    padding: 105px 16px 32px;
  }

  .error-brand {
    top: 20px;
  }

  .error-brand img {
    width: 125px;
  }

  .error-card {
    padding: 34px 20px;
  }
}

.product-card h3 {
  margin: 10px 0 5px;
  font-size: .9rem;
}

.product-card small {
  display: block;
  min-height: 34px;
  color: #a9a9a9;
  font-size: .68rem;
}

.product-card>div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.product-card .product-card-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin: 8px 0 10px;
}

.product-card .product-card-qty {
  display: inline-grid;
  width: 92px;
  grid-template-columns: 28px 36px 28px;
  align-items: center;
  margin: 0;
  border: 1px solid rgba(245, 168, 23, .45);
  border-radius: 5px;
  overflow: hidden;
}

.product-card .product-card-qty button,
.product-card .product-card-qty span {
  display: grid;
  width: auto;
  height: 28px;
  place-items: center;
  margin: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: .72rem;
  font-weight: 900;
}

.product-card .product-card-qty button {
  color: var(--color-black);
  background: var(--color-primary);
}

.product-card .product-card-qty span {
  color: inherit;
  background: rgba(255, 255, 255, .08);
}

.product-card .test-report-icon {
  display: grid;
  width: 32px;
  height: 32px;
  min-width: 32px;
  place-items: center;
  color: var(--color-primary);
  background: rgba(245, 168, 23, .08);
  border: 1px solid rgba(245, 168, 23, .55);
  border-radius: 50%;
  box-shadow: none;
}

.product-card .test-report-icon:hover {
  color: var(--color-black);
  background: var(--color-primary);
  transform: translateY(-2px);
}

.report-lightbox {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, .84);
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}

.report-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.report-lightbox figure {
  position: relative;
  width: min(900px, 100%);
  max-height: min(86vh, 920px);
  margin: 0;
  padding: 14px;
  background: #0b0b0b;
  border: 1px solid rgba(245, 168, 23, .42);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .5);
}

.report-lightbox img {
  display: block;
  width: 100%;
  max-height: calc(86vh - 72px);
  object-fit: contain;
  background: #fff;
  border-radius: 5px;
}

.report-lightbox figcaption {
  margin-top: 12px;
  color: var(--color-primary);
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.report-lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
}

.product-card strong {
  font-size: .85rem;
}

.product-card button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
  transition: transform .25s, box-shadow .25s, background .25s;
}

.product-card button:hover {
  transform: scale(1.12) rotate(-6deg);
  background: var(--color-primary-light);
  box-shadow: 0 10px 20px rgba(245, 168, 23, .32);
}

.product-card .notify-stock-btn,
.shop-product-card.product-card .notify-stock-btn {
  display: inline-flex;
  width: auto;
  min-width: 96px;
  height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: var(--color-primary);
  font-size: .68rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  background: #0b0b0b;
  border: 1px solid rgba(245, 168, 23, .62);
  border-radius: 999px;
}

.product-card .notify-stock-btn:hover,
.shop-product-card.product-card .notify-stock-btn:hover {
  color: var(--color-black);
  background: var(--color-primary);
  transform: translateY(-2px);
}

[data-stock-notify].is-notified,
[data-stock-notify]:disabled {
  cursor: not-allowed;
  color: #155724;
  background: #d4edda;
  border-color: rgba(21, 87, 36, .28);
  box-shadow: none;
  transform: none;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  padding: 4px 7px;
  color: var(--color-black);
  font-size: .5rem;
  font-weight: 800;
  text-transform: uppercase;
  background: var(--color-primary);
  border-radius: 3px;
}

.stock-tag {
  color: #fff;
  background: #111;
  border: 1px solid rgba(245, 168, 23, .65);
}

.stock-notify-modal {
  position: fixed;
  inset: 0;
  z-index: 3200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, .78);
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s ease, visibility .2s ease;
}

.stock-notify-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.stock-notify-dialog {
  position: relative;
  width: min(460px, 100%);
  padding: 28px;
  color: #111;
  background: #fff;
  border: 1px solid #ffe0b5;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .45);
}

.stock-notify-dialog>span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 1.35rem;
  border: 1px solid #ffe0b5;
  border-radius: 50%;
}

.stock-notify-dialog h2 {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 900;
}

.stock-notify-dialog p {
  margin: 0 0 18px;
  color: #444;
  font-size: .86rem;
  line-height: 1.55;
}

.stock-notify-dialog form {
  display: grid;
  gap: 12px;
}

.stock-notify-dialog label {
  display: grid;
  gap: 6px;
  color: #111;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.stock-notify-dialog :is(input, textarea) {
  width: 100%;
  padding: 11px 12px;
  color: #111;
  font-size: .86rem;
  background: #fafafa;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: 0;
}

.stock-notify-dialog :is(input, textarea):focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 168, 23, .16);
}

.stock-notify-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #111;
  background: #f7f7f7;
  border: 0;
  border-radius: 50%;
}

.testimonials {
  position: relative;
  overflow: hidden;
  /* background: linear-gradient(180deg, #fafafa 0%, #fff 68%, #070707 68%, #070707 100%); */
}

.testimonials::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 300px;
  background: radial-gradient(circle at 50% 0, rgba(0, 0, 0, .06), transparent 58%);
  pointer-events: none;
}

.testimonials .container {
  position: relative;
  z-index: 1;
}

.testimonial-heading>p:last-child {
  max-width: 620px;
  margin: 15px auto 0;
  color: #777;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.65;
}

.testimonial-carousel {
  position: relative;
  /* max-width: 1040px; */
  /* margin: 48px auto 0; */
  padding: 0 58px;
}

.testimonial-viewport {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 26px;
  padding: 18px 2px 28px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.testimonial-track::-webkit-scrollbar {
  display: none;
}

.testimonial-slide {
  flex: 0 0 calc((100% - 52px) / 3);
  scroll-snap-align: center;
}

.quote-card {
  position: relative;
  display: flex;
  min-height: 346px;
  height: 100%;
  margin: 0;
  padding: 34px 34px 30px;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid #dedede;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
  overflow: hidden;
  transition: transform .28s, border-color .28s, box-shadow .28s;
}

.quote-card:hover {
  /* transform: translateY(-7px); */
  border-color: rgba(245, 168, 23, .55);
}

.testimonial-slide.is-featured .quote-card {
  min-height: 346px;
  margin-top: 0;
  box-shadow: 0 19px 42px rgba(0, 0, 0, .13);
}

.quote-card::before,
.quote-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -36px;
  width: 172px;
  height: 82px;
  border-radius: 100% 0 0 0;
  transform: rotate(-13deg);
  pointer-events: none;
}

.quote-card::before {
  right: -18px;
  bottom: -27px;
  /* background: linear-gradient(135deg, #ffc14d, #c87600 70%); */
  background: linear-gradient(135deg, #000000, #f5a817 70%);
}

.quote-card::after {
  right: -34px;
  bottom: -42px;
  background: #090909;
}

.quote-card>i {
  color: var(--color-primary);
  font-size: 2.55rem;
  line-height: 1;
  transition: transform .28s;
}

.quote-card:hover>i {
  transform: translateY(-3px) rotate(-5deg);
}

.quote-card p {
  display: -webkit-box;
  min-height: calc(1.55em * 3);
  max-height: calc(1.55em * 3);
  margin: 30px 0 26px;
  overflow: hidden;
  font-size: 1.03rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  cursor: pointer;
}

.quote-card.is-expanded p {
  display: block;
  max-height: none;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.quote-card figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: auto;
  padding-top: 22px;
  border-top: 1px solid #ddd;
}

.quote-card figcaption::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 38px;
  height: 2px;
  background: var(--color-primary);
}

.quote-card figcaption>img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  background: #111;
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 7px 16px rgba(0, 0, 0, .16);
}

.quote-card strong,
.quote-card small,
.quote-card .rating {
  display: block;
}

.quote-card strong {
  color: #111;
  font-size: .94rem;
  font-weight: 800;
}

.quote-card small {
  margin-top: 4px;
  color: #777;
  font-size: .84rem;
}

.quote-card .rating {
  margin-top: 9px;
  color: var(--color-primary);
  font-size: .86rem;
  letter-spacing: .15em;
}

.testimonial-nav {
  position: absolute;
  top: 43%;
  z-index: 3;
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  color: var(--color-white);
  background: #050505;
  border: 0;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .18);
  transition: background .25s, transform .25s;
}

.testimonial-nav:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}

.testimonial-prev {
  left: -10px;
}

.testimonial-next {
  right: -10px;
}

.testimonial-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 2px;
}

.testimonial-pagination button {
  width: 11px;
  height: 11px;
  padding: 0;
  background: #d3d3d3;
  border: 0;
  border-radius: 50%;
  transition: background .25s, transform .25s;
}

.testimonial-pagination button.is-active {
  background: var(--color-primary);
  transform: scale(1.14);
}

.testimonial-stats {
  display: grid;
  /* max-width: 980px; */
  margin: 38px auto 0;
  padding: 31px 0px;
  grid-template-columns: repeat(4, 1fr);
  color: var(--color-white);
  background: linear-gradient(135deg, #070707, #141414);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 0, 0, .16);
}

.testimonial-stats>div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 0 22px;
  /* border-right: 1px solid rgba(255, 255, 255, .72); */
  border-right: 1px solid rgb(245 168 23 / 48%);
}

.testimonial-stats>div:last-child {
  border-right: 0;
}

.testimonial-stats i {
  grid-row: span 2;
  color: var(--color-primary);
  font-size: 2.45rem;
}

/* .testimonial-stats strong {
  font-family: var(--font-display);
  font-size: 2.65rem;
  font-weight: 800;
  line-height: .85;
} */

.testimonial-stats span {
  margin-top: 6px;
  font-size: .74rem;
  font-weight: 500;
}

.site-footer {
  position: relative;
  padding: 90px 0 10px;
  color: #bdbdbd;
  background: var(--color-black);
  /* background: radial-gradient(circle at 16% 18%, rgba(255, 255, 255, .07), transparent 24%), radial-gradient(circle at 82% 12%, rgba(255, 255, 255, .05), transparent 25%), linear-gradient(135deg, #101114 0%, #050505 54%, #090909 100%); */
  overflow: hidden;
}

.site-footer::before,
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 260px;
  height: 260px;
  opacity: .22;
  background-image: radial-gradient(rgba(245, 168, 23, .75) 1.4px, transparent 1.4px);
  background-size: 16px 16px;
  pointer-events: none;
}

.site-footer::before {
  left: -40px;
}

.site-footer::after {
  right: -40px;
}

.footer-copy {
  max-width: 330px;
  margin: 10px 0 34px;
  color: #c6c6c6;
  font-size: 1rem;
  line-height: 1.75;
}

.socials {
  display: flex;
  gap: 18px;
}

.socials a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--color-white);
  font-size: 1.15rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .04));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  transition: color .25s, border-color .25s, transform .25s;
}

.socials a:hover {
  color: var(--color-primary);
  border-color: rgba(245, 168, 23, .45);
  transform: translateY(-2px);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(240px, .9fr) minmax(0, 1.8fr);
  gap: 62px;
  align-items: start;
}

.footer-brand {
  width: 238px;
  height: 70px;
}

.footer-brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
}

.site-footer h3,
.footer-assurance strong,
.footer-feature-strip strong {
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer h3 {
  position: relative;
  margin: 0 0 44px;
  color: var(--color-white);
  font-size: 1.18rem;
  letter-spacing: .06em;
}

.site-footer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -17px;
  width: 35px;
  height: 2px;
  background: var(--color-primary);
}

.footer-links a {
  position: relative;
  /* display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px; */
  margin-bottom: 22px;
  padding-left: 18px;
  color: #bdbdbd;
  font-size: .98rem;
  line-height: 1.2;
  transition: color .25s, transform .25s;
}

.footer-links a::before {
  content: "\f105";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.footer-category-block {
  width: 100%;
}

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

.footer-category-links a span {
  display: inline-grid;
  min-width: 28px;
  height: 24px;
  place-items: center;
  padding: 0 8px;
  color: var(--color-black);
  font-size: .72rem;
  font-weight: 900;
  background: var(--color-primary);
  border-radius: 999px;
}

.footer-feature-strip>div,
.footer-assurance,
.payment-badges span,
.socials a {
  transition: transform .25s, border-color .25s, box-shadow .25s, background .25s;
}

.footer-feature-strip>div:hover {
  transform: translateY(-4px);
}

.footer-feature-strip>div:hover i,
.footer-assurance:hover i {
  transform: scale(1.08);
}

.footer-feature-strip i,
.footer-assurance i {
  transition: transform .25s, filter .25s;
}

.footer-feature-strip>div:hover i,
.footer-assurance:hover i {
  filter: drop-shadow(0 10px 18px rgba(245, 168, 23, .3));
}

.footer-assurance:hover {
  border-color: rgba(245, 168, 23, .42);
  background: rgba(245, 168, 23, .055);
}

.footer-newsletter>p {
  margin: 0 0 26px;
  color: #bdbdbd;
  font-size: .98rem;
  line-height: 1.7;
}

.newsletter {
  display: flex;
  height: 60px;
  margin: 0 0 30px;
  background: rgba(255, 255, 255, .02);
  border: 1px solid rgba(255, 255, 255, .17);
  border-radius: 7px;
  overflow: hidden;
}

.newsletter input {
  min-width: 0;
  flex: 1;
  padding: 0 20px;
  color: var(--color-white);
  font-size: .92rem;
  background: transparent;
  border: 0;
  outline: 0;
}

.newsletter button {
  width: 62px;
  color: var(--color-black);
  background: var(--color-primary);
  border: 0;
  font-size: 1.4rem;
}

.footer-assurance {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  padding: 20px 22px;
  background: rgba(255, 255, 255, .025);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
}

.footer-assurance i {
  color: var(--color-primary);
  font-size: 2.15rem;
}

.footer-assurance strong,
.footer-assurance span {
  display: block;
}

.footer-assurance strong {
  color: var(--color-white);
  font-size: .94rem;
}

.footer-assurance span {
  margin-top: 5px;
  color: #aaa;
  font-size: .86rem;
}

.footer-feature-strip {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 32px 42px;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(135deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .02));
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 10px;
}

.footer-feature-strip>div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 22px;
  align-items: center;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, .35);
}

.footer-feature-strip>div:last-child {
  border-right: 0;
}

.footer-feature-strip i {
  display: grid;
  grid-row: span 2;
  width: 70px;
  height: 70px;
  place-items: center;
  color: var(--color-primary);
  font-size: 2.05rem;
  border: 1px solid rgba(245, 168, 23, .45);
  border-radius: 50%;
}

.footer-feature-strip strong {
  color: var(--color-white);
  font-size: .9rem;
}

.footer-feature-strip span {
  margin-top: 5px;
  color: #adadad;
  font-size: .84rem;
  line-height: 1.4;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
  padding-top: 10px;
  color: #a7a7a7;
  font-size: .92rem;
  border-top: 1px solid var(--color-primary);
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
}

.payment-badges span {
  display: grid;
  min-width: 64px;
  height: 34px;
  place-items: center;
  color: #060606;
  font-size: .82rem;
  font-weight: 900;
  background: #f1f1f1;
  border-radius: 5px;
}

.payment-badges span:nth-child(2) {
  min-width: 66px;
  color: #fff;
  background: linear-gradient(90deg, #eb001b 0 50%, #f79e1b 50%);
}

.payment-badges span:nth-child(3) {
  color: #fff;
  background: #2e77bb;
}

.payment-badges span:nth-child(4) {
  color: #113984;
  background: #fff;
}

.payment-badges span:nth-child(5) {
  color: #fff;
  background: #f7931a;
}

.payment-badges span.payment-image {
  width: clamp(86px, 8vw, 116px);
  min-width: 0;
  height: clamp(34px, 3.2vw, 44px);
  padding: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.payment-badges img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.toast {
  color: var(--color-white);
  background: var(--color-dark);
  border-left: 4px solid var(--color-primary);
}

.reveal-up {
  animation: revealUp .85s ease both;
}

.delay-1 {
  animation-delay: .12s;
}

.delay-2 {
  animation-delay: .24s;
}

.delay-3 {
  animation-delay: .36s;
}

.delay-4 {
  animation-delay: .48s;
}

.reveal-on-scroll,
.reveal-group>* {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .72s cubic-bezier(.2, .82, .24, 1), transform .72s cubic-bezier(.2, .82, .24, 1), filter .72s ease;
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible,
.reveal-group>*.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: none;
}

.reveal-on-scroll[data-anim="left"],
.reveal-group>*[data-anim="left"] {
  transform: translateX(-34px);
}

.reveal-on-scroll[data-anim="right"],
.reveal-group>*[data-anim="right"] {
  transform: translateX(34px);
}

.reveal-on-scroll[data-anim="scale"],
.reveal-group>*[data-anim="scale"] {
  transform: translateY(18px) scale(.96);
}

.reveal-on-scroll[data-anim="soft"],
.reveal-group>*[data-anim="soft"] {
  /* filter: blur(8px); */
  transform: translateY(20px);
}

.reveal-on-scroll.is-visible[data-anim],
.reveal-group>*.is-visible[data-anim] {
  transform: translate(0, 0) scale(1);
}

.category-card img,
.product-card img {
  transition: transform .35s ease, filter .35s ease;
}

.category-card:hover img,
.product-card:hover img {
  transform: translateY(-7px) scale(1.04);
}

.motion-card {
  position: relative;
  overflow: hidden;
}

.motion-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, .16) 42%, transparent 60%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform .75s ease, opacity .35s ease;
  pointer-events: none;
}

.motion-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.motion-card:hover {
  transform: translateY(-6px);
}

.float-asset {
  animation: productFloat 5.8s ease-in-out infinite;
}

.pulse-glow {
  animation: pulseGlow 2.8s ease-in-out infinite;
}

.hero .reveal-up {
  animation-name: heroContentReveal;
  animation-duration: .95s;
  animation-timing-function: cubic-bezier(.18, .82, .24, 1);
  animation-fill-mode: both;
}

.hero .btn {
  transform: translateZ(0);
}

.hero .btn:hover {
  transform: translateY(-3px);
}

.hero .btn-gold.pulse-glow {
  animation: heroCtaGlow 5.5s ease-in-out infinite;
}

.search-panel {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: grid;
  place-items: start center;
  padding: 110px 20px 20px;
  background: rgba(0, 0, 0, .88);
  backdrop-filter: blur(9px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

.search-panel.is-open {
  opacity: 1;
  visibility: visible;
}

.search-box {
  width: min(760px, 100%);
  padding: 30px;
  background: var(--color-white);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45);
  transform: translateY(-25px);
  transition: transform .3s ease;
}

.search-panel.is-open .search-box {
  transform: translateY(0);
}

.search-form {
  display: flex;
  gap: 10px;
}

.search-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 18px;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  outline: 0;
}

.search-form input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 168, 23, .18);
}

.search-form button,
.panel-close {
  display: grid;
  place-items: center;
  border: 0;
}

.search-form button {
  width: 54px;
  color: var(--color-black);
  background: var(--color-primary);
  border-radius: 6px;
}

.panel-close {
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: rgba(255, 255, 255, .12);
  border-radius: 50%;
}

.search-close {
  position: absolute;
  top: 28px;
  right: 32px;
}

.search-results {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
}

.search-result img {
  width: 48px;
  height: 58px;
  object-fit: contain;
}

.search-result strong,
.search-result small {
  display: block;
}

.search-result small {
  color: var(--color-muted);
  font-size: .75rem;
}

.search-result button {
  min-width: 34px;
  height: 34px;
  color: var(--color-black);
  background: var(--color-primary);
  border: 0;
  border-radius: 50%;
}

.no-results {
  margin: 0;
  color: var(--color-muted);
  font-size: .9rem;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0, 0, 0, .62);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}

.cart-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  width: min(430px, 100%);
  height: 100vh;
  padding: 24px;
  background: var(--color-white);
  box-shadow: -18px 0 60px rgba(0, 0, 0, .28);
  transform: translateX(105%);
  transition: transform .32s ease;
}

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

.cart-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-border);
}

.cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 2rem;
}

.cart-close {
  color: var(--color-black);
  background: var(--color-surface);
}

.cart-items {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 14px;
  margin: 18px 0;
  overflow-y: auto;
}

.cart-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cart-item>div {
  min-width: 0;
}

.cart-item img {
  width: 64px;
  height: 76px;
  object-fit: contain;
  background: var(--color-surface);
  border-radius: 7px;
}

.cart-item h3 {
  margin: 0 0 4px;
  font-size: .9rem;
}

.cart-item small {
  color: var(--color-muted);
}

.qty-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 10px;
  padding: 4px;
  background: var(--color-surface);
  border-radius: 999px;
}

.qty-control button,
.remove-item {
  border: 0;
  background: transparent;
}

.qty-control button {
  width: 24px;
  height: 24px;
  color: var(--color-black);
}

.remove-item {
  color: #a2a2a2;
  font-size: .9rem;
}

.cart-empty {
  display: none;
  flex: 1;
  place-items: center;
  color: var(--color-muted);
  text-align: center;
}

.cart-empty.is-visible {
  display: grid;
}

.cart-summary {
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
}

.cart-summary>div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.cart-summary p {
  color: var(--color-muted);
  font-size: .78rem;
}

.shop-page .site-header {
  position: sticky;
  background: #030303;
}

.shop-hero {
  color: var(--color-white);
  background: var(--color-black) url("../images/hero-performance.png") right 35% bottom/auto 120% no-repeat;
  /* background: var(--color-black) url("../images/hero-performance.png") center bottom/auto 118% no-repeat; */
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.shop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .88) 36%, rgba(0, 0, 0, .22) 68%, rgba(0, 0, 0, .4) 100%);
}

.shop-hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  background: linear-gradient(105deg, transparent 0 43%, rgba(245, 168, 23, .08) 46%, rgba(255, 193, 77, .7) 48%, rgba(245, 168, 23, .1) 50%, transparent 54% 100%);
  /* background: linear-gradient(128deg, transparent 34%, rgba(245, 168, 23, .1) 37%, rgba(245, 168, 23, .45) 38%, transparent 39%, transparent 46%, rgba(245, 168, 23, .32) 48%, transparent 50%, transparent 58%, rgba(245, 168, 23, .28) 60%, transparent 62%); */
  pointer-events: none;
}

.shop-hero .container {
  position: relative;
  z-index: 1;
}

.shop-hero-inner {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 78px 0 0;
}

.shop-hero-copy {
  max-width: 520px;
  padding-top: 24px;
}

.shop-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4rem, 8vw, 5.6rem);
  font-weight: 800;
  line-height: .9;
  text-transform: uppercase;
}

.shop-hero-copy p:last-child {
  max-width: 455px;
  margin: 18px 0 0;
  color: #ececec;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.75;
}

.shop-hero-features {
  display: grid;
  max-width: 650px;
  /* grid-template-columns: repeat(4, 1fr); */
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.shop-hero-features>div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 27px 24px 28px 0;
}

.shop-hero-features i,
.shop-trust-grid i {
  display: grid;
  width: 38px;
  min-width: 38px;
  height: 38px;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.shop-hero-features span {
  font-size: .68rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.shop-catalog {
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.shop-layout {
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 34px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: 104px;
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .06);
  overflow: hidden;
}

.filter-block {
  padding: 22px 20px;
  border-bottom: 1px solid #e8e8e8;
}

.filter-block h2 {
  margin: 0 0 16px;
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.filter-block a,
.filter-block label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 8px 0;
  color: #242424;
  font-size: .84rem;
  font-weight: 600;
}

.filter-block a.active {
  margin: 0 -20px 4px;
  padding: 13px 20px;
  color: #f28f00;
  background: linear-gradient(90deg, rgba(245, 168, 23, .16), rgba(245, 168, 23, .03));
  border-left: 3px solid var(--color-primary);
}

.filter-block strong {
  color: #6e6e6e;
  font-size: .78rem;
}

.filter-block input {
  width: 17px;
  height: 17px;
  margin-right: 10px;
  accent-color: var(--color-primary);
}

.price-range {
  position: relative;
  height: 4px;
  margin: 20px 5px 16px;
  background: #e7e7e7;
  border-radius: 999px;
}

.price-range-control {
  position: relative;
  padding: 12px 0 2px;
}

.price-range-control input[type="range"] {
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  height: 18px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  appearance: none;
  -webkit-appearance: none;
}

.price-range-control input[type="range"]::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
  appearance: none;
  -webkit-appearance: none;
}

.price-range-control input[type="range"]::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: var(--color-white);
  border: 3px solid var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  pointer-events: auto;
}

.price-range span {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-primary);
  border-radius: inherit;
}

.price-values {
  display: flex;
  justify-content: space-between;
  font-size: .78rem;
}

.filter-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}

.filter-fields input,
.sort-form select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: #171717;
  font-size: .78rem;
  font-weight: 800;
  background: var(--color-white);
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}

.clear-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: calc(100% - 32px);
  margin: 16px;
  padding: 14px;
  color: var(--color-white);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--color-black);
  border: 0;
  border-radius: 5px;
}

.clear-filters i {
  color: var(--color-primary);
}

.filter-reset {
  margin-top: -8px;
  color: #111;
  background: var(--color-white);
  border: 1px solid #d9d9d9;
}

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.shop-toolbar p {
  margin: 0;
  font-size: .88rem;
  font-weight: 500;
}

.shop-toolbar button {
  padding: 13px 18px;
  color: #202020;
  font-size: .78rem;
  font-weight: 800;
  background: var(--color-white);
  border: 1px solid #e4e4e4;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, .04);
}

.shop-toolbar i {
  margin-left: 20px;
  color: var(--color-primary);
}

.sort-form {
  min-width: 190px;
}

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

.shop-product-card.product-card {
  min-height: 318px;
  padding: 18px;
  color: var(--color-text);
  background: var(--color-white);
  border-color: #e5e5e5;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .055);
}

.shop-product-card.product-card:hover {
  border-color: rgba(245, 168, 23, .55);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .12);
}

.shop-product-card.product-card img {
  width: 100%;
  height: auto;
  /* height: 152px;
  object-fit: cover; */
  margin-bottom: 10px;
}

.shop-product-card.product-card small {
  min-height: auto;
  color: #777;
  font-size: .61rem;
  font-weight: 800;
  text-transform: uppercase;
}

.shop-product-card.product-card h3 {
  min-height: 34px;
  margin: 6px 0;
  color: #171717;
  font-size: .86rem;
  font-weight: 800;
  line-height: 1.35;
}

.rating {
  margin-bottom: 12px;
  color: var(--color-primary);
  font-size: .74rem;
  letter-spacing: .08em;
}

.rating span {
  color: #777;
  letter-spacing: 0;
}

.shop-product-card del {
  margin-left: 7px;
  color: #888;
  font-weight: 600;
}

.shop-product-card.product-card button {
  color: var(--color-primary);
  background: var(--color-white);
  border: 2px solid var(--color-primary);
}

.shop-product-card.product-card button:hover {
  color: var(--color-black);
  background: var(--color-primary);
}

.shop-product-card.product-card .notify-stock-btn {
  color: var(--color-primary);
  background: #0b0b0b;
  border: 1px solid rgba(245, 168, 23, .62);
}

.shop-product-card.product-card .product-card-qty button {
  width: auto;
  height: 28px;
  color: var(--color-black);
  background: var(--color-primary);
  border: 0;
  border-radius: 0;
}

.shop-product-card.product-card .test-report-icon {
  width: 32px;
  height: 32px;
  color: var(--color-primary);
  background: rgba(245, 168, 23, .08);
  border: 1px solid rgba(245, 168, 23, .55);
  border-radius: 50%;
}

.shop-product-card.product-card .test-report-icon:hover {
  color: var(--color-black);
  background: var(--color-primary);
}

.shop-pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.shop-pagination nav {
  width: 100%;
}

.shop-pagination .pagination {
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.shop-pagination .page-item {
  margin: 0;
}

.shop-pagination .page-link {
  display: grid;
  min-width: 38px;
  height: 38px;
  place-items: center;
  padding: 0 12px;
  color: #111;
  font-size: .8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: none;
  transition: color .22s, background .22s, border-color .22s, transform .22s;
}

.shop-pagination .page-link:hover,
.shop-pagination .page-link:focus {
  color: var(--color-black);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: none;
  transform: translateY(-2px);
}

.shop-pagination .page-item.active .page-link {
  color: var(--color-black);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.shop-pagination .page-item.disabled .page-link {
  color: #9b9b9b;
  pointer-events: none;
  background: #f2f2f2;
  border-color: #e6e6e6;
}

.tag-green {
  color: var(--color-white);
  background: #37a821;
}

.tag-red {
  color: var(--color-white);
  background: #ee3535;
}

.bundle-banner {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding: 32px 46px;
  color: var(--color-white);
  background-color: var(--color-black);
  border-radius: var(--radius);
  overflow: hidden;
  background-image: url(../images/banner/buy-more.png);
  background-repeat: no-repeat;
  background-position: left;
  background-size: contain;
}

.bundle-banner>div {
  position: relative;
  z-index: 1;
}

.bundle-products {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 12px;
}

.bundle-products img {
  width: 118px;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(0, 0, 0, .55));
}

.bundle-products img:nth-child(2) {
  width: 150px;
  height: 188px;
}

.bundle-products img:nth-child(3) {
  width: 150px;
  height: 145px;
}

.bundle-banner h2,
.shop-newsletter h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 3rem);
  font-weight: 700;
}

.bundle-banner p:not(.eyebrow) {
  max-width: 430px;
  margin: 9px 0 20px;
  color: #dedede;
  line-height: 1.55;
}

.shop-trust {
  padding: 34px 0 44px;
  background: linear-gradient(90deg, #fff, #fff7eb 52%, #fff);
}

.shop-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shop-trust-grid>div {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 0 34px;
  border-right: 1px solid #ddd;
}

.shop-trust-grid>div:last-child {
  border-right: 0;
}

.shop-trust-grid i {
  grid-row: span 2;
  font-size: 1.25rem;
  border-radius: 8px;
}

.shop-trust-grid strong {
  font-size: .92rem;
  font-weight: 900;
}

.shop-trust-grid span {
  margin-top: 5px;
  color: #555;
  font-size: .76rem;
  line-height: 1.45;
}

.shop-newsletter {
  padding: 44px 0;
  color: var(--color-white);
  background: radial-gradient(circle at 0 0, rgba(245, 168, 23, .12), transparent 24%), #090909;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.shop-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr minmax(360px, 630px);
  gap: 44px;
  align-items: center;
}

.shop-newsletter p:last-child {
  margin: 10px 0 0;
  color: #bdbdbd;
}

.shop-newsletter .newsletter {
  margin: 0;
}

.shop-newsletter .newsletter button {
  width: 170px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-page .site-header {
  position: sticky;
  background: #030303;
}

.cart-hero {
  min-height: 310px;
  padding: 74px 0 58px;
  color: var(--color-white);
  background: var(--color-black) url("../images/hero-performance.png") right 35% bottom/auto 120% no-repeat;
  /* background: var(--color-black) url("../images/hero-performance.png") right 14% bottom/auto 126% no-repeat; */
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.cart-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .86) 39%, rgba(0, 0, 0, .2) 68%, rgba(0, 0, 0, .42) 100%);
}

.cart-hero::after {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(128deg, transparent 35%, rgba(245, 168, 23, .1) 37%, rgba(245, 168, 23, .45) 38%, transparent 40%, transparent 48%, rgba(245, 168, 23, .28) 50%, transparent 52%);
  pointer-events: none;
}

.cart-hero .container {
  position: relative;
  z-index: 1;
}

.cart-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: #9d9d9d;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-breadcrumb span {
  color: var(--color-primary);
}

.cart-breadcrumb i {
  color: #6f6f6f;
  font-size: .62rem;
}

.cart-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.8rem, 7vw, 5.35rem);
  font-weight: 800;
  line-height: .9;
  text-transform: uppercase;
}

.cart-hero h1 span {
  color: var(--color-primary);
}

.cart-hero p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #f1f1f1;
  font-size: 1.04rem;
  font-weight: 600;
  line-height: 1.75;
}

.cart-main {
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: start;
}

.cart-items-panel,
.order-summary {
  background: var(--color-white);
  border: 1px solid #e7e7e7;
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .06);
}

.cart-items-panel {
  padding: 24px;
}

.cart-items-panel h2,
.order-summary h2 {
  margin: 0 0 22px;
  font-size: 1.14rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-table {
  display: grid;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 120px 150px 120px 34px;
  gap: 16px;
  align-items: center;
  min-height: 94px;
  padding: 13px 0;
  border-bottom: 1px solid #dedede;
}

.cart-row-head {
  min-height: auto;
  padding: 0 0 12px;
  color: #383838;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-product-cell {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-product-cell img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.cart-product-cell strong,
.cart-product-cell span {
  display: block;
}

.cart-product-cell strong,
.cart-row>strong {
  color: #111;
  font-size: .92rem;
  font-weight: 900;
}

.cart-product-cell span {
  margin-top: 8px;
  color: #666;
  font-size: .82rem;
}

.cart-stepper {
  display: inline-grid;
  width: 105px;
  grid-template-columns: 34px 37px 34px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  overflow: hidden;
}

.cart-stepper button,
.cart-stepper span {
  display: grid;
  height: 34px;
  place-items: center;
}

.cart-stepper button {
  color: #111;
  background: var(--color-white);
  border: 0;
  font-weight: 800;
  transition: background .22s, color .22s;
}

.cart-stepper button:hover {
  color: var(--color-black);
  background: var(--color-primary);
}

.cart-stepper span {
  font-size: .82rem;
  font-weight: 800;
  border-right: 1px solid #d3d3d3;
  border-left: 1px solid #d3d3d3;
}

.cart-remove {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #858585;
  background: transparent;
  border: 0;
  transition: color .22s, transform .22s;
}

.cart-remove:hover {
  color: #e33434;
  transform: translateY(-2px);
}

.cart-panel-actions {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
}

.cart-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 42px;
  padding: 0 18px;
  color: #111;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--color-white);
  border: 1px solid #d9d9d9;
  border-radius: 5px;
  transition: border-color .22s, color .22s, transform .22s;
}

.cart-secondary-btn:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.order-summary {
  padding: 28px 26px;
}

.summary-line,
.summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.summary-line {
  margin-bottom: 22px;
  color: #252525;
  font-size: .84rem;
}

.summary-line strong {
  font-weight: 900;
}

.summary-line span:last-child {
  color: #303030;
  font-size: .78rem;
}

.summary-line i {
  margin-left: 4px;
  color: #777;
}

.summary-total {
  margin: 30px 0 24px;
  padding-top: 26px;
  border-top: 1px solid #ddd;
}

.summary-total span {
  font-size: .92rem;
  font-weight: 900;
}

.summary-total strong {
  color: #ff8500;
  font-size: 1.7rem;
  font-weight: 900;
}

.order-summary .btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.order-summary>p {
  margin: 24px 0 12px;
  color: #888;
  font-size: .8rem;
  text-align: center;
}

.cart-payments {
  justify-content: center;
  gap: 12px;
}

.cart-payments span {
  min-width: 45px;
  height: 27px;
  font-size: .66rem;
}

.checkout-page .site-header {
  position: sticky;
  background: #030303;
}

.checkout-hero {
  min-height: 315px;
  padding: 72px 0 54px;
  color: var(--color-white);
  background: var(--color-black) url("../images/hero-performance.png") right 35% bottom/auto 120% no-repeat;
  /* background: var(--color-black) url("../images/hero-performance.png") right 11% bottom/auto 134% no-repeat; */
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.checkout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .86) 39%, rgba(0, 0, 0, .18) 69%, rgba(0, 0, 0, .42) 100%);
}

.checkout-hero::after {
  content: "";
  position: absolute;
  inset: -22%;
  background: linear-gradient(128deg, transparent 34%, rgba(245, 168, 23, .1) 37%, rgba(245, 168, 23, .45) 38%, transparent 40%, transparent 47%, rgba(245, 168, 23, .34) 49%, transparent 51%, transparent 58%, rgba(245, 168, 23, .28) 60%, transparent 62%);
  pointer-events: none;
}

.checkout-hero .container {
  position: relative;
  z-index: 1;
}

.checkout-hero-copy {
  max-width: 520px;
}

.checkout-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.8vw, 4.65rem);
  font-weight: 700;
  line-height: .98;
}

.checkout-hero h1 span {
  color: var(--color-primary);
}

.checkout-breadcrumb {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: var(--color-white);
  font-size: .88rem;
  font-weight: 600;
}

.checkout-breadcrumb i {
  color: #a2a2a2;
  font-size: .7rem;
}

.checkout-main {
  padding: 34px 0 24px;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: start;
}

.checkout-form {
  display: grid;
  gap: 26px;
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  padding-right: 4px;
  scrollbar-width: thin;
}

.checkout-step {
  padding-bottom: 24px;
  border-bottom: 1px solid #e4e4e4;
}

.checkout-step:last-child {
  border-bottom: 0;
}

.checkout-step-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.checkout-step-head>span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--color-white);
  font-size: .88rem;
  font-weight: 900;
  background: #ff8a00;
  border-radius: 50%;
}

.checkout-step-head h2 {
  margin: 0;
  font-size: .92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-step-head p {
  margin: 0;
  color: #5f5f5f;
  font-size: .78rem;
}

.checkout-step-head a {
  color: #ff8500;
  font-weight: 800;
}

.checkout-title-head {
  display: block;
  margin-bottom: 28px;
}

.checkout-title-head h2 {
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: none;
}

.checkout-form input,
.checkout-form select,
.checkout-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: #111;
  font-size: .84rem;
  background: var(--color-white);
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  outline: 0;
  transition: border-color .22s, box-shadow .22s;
}

.checkout-form textarea {
  min-height: 106px;
  padding-top: 14px;
  resize: vertical;
}

.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(245, 168, 23, .15);
}

.checkout-field {
  display: grid;
  gap: 12px;
  margin: 0;
  color: var(--color-text);
  font-size: .95rem;
  font-weight: 800;
}

.checkout-field span {
  line-height: 1.2;
}

.checkout-check {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 14px;
  color: #252525;
  font-size: .8rem;
  font-weight: 600;
}

.checkout-check input,
.checkout-option input {
  width: 17px;
  min-height: 17px;
  height: 17px;
  padding: 0;
  accent-color: #ff8a00;
}

.checkout-fields {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.checkout-fields-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 30px;
}

.checkout-fields .wide {
  grid-column: 1 / -1;
}

.checkout-fields .span-2 {
  grid-column: span 2;
}

.postcode-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-self: end;
}

.postcode-action-btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  color: var(--color-black);
  font-size: .84rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  border: 1px solid rgba(245, 168, 23, .62);
  border-radius: 7px;
  box-shadow: 0 10px 22px rgba(245, 168, 23, .2);
  transition: transform .22s, box-shadow .22s, background .22s;
}

.postcode-action-btn:hover {
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: 0 14px 28px rgba(245, 168, 23, .28);
  transform: translateY(-1px);
}

.postcode-action-alt {
  grid-column: 1 / -1;
}

.postcode-lookup-status {
  min-height: 24px;
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: .84rem;
  font-weight: 700;
}

.postcode-address-picker {
  margin-top: 14px;
}

.manual-address-fields {
  display: none;
  margin-top: 18px;
}

.manual-address-fields.is-visible {
  display: block;
}

.checkout-additional {
  margin-top: 30px;
}

.checkout-additional h3 {
  margin: 0 0 12px;
  color: var(--color-black);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
}

.checkout-additional textarea {
  min-height: 138px;
}

.checkout-select {
  position: relative;
  margin: 0;
}

.checkout-select span {
  position: absolute;
  top: 7px;
  left: 16px;
  color: #686868;
  font-size: .62rem;
  font-weight: 700;
}

.checkout-select select {
  padding-top: 14px;
  font-weight: 800;
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #ff8a00 50%), linear-gradient(135deg, #ff8a00 50%, transparent 50%);
  background-position: calc(100% - 18px) 21px, calc(100% - 13px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.checkout-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 45px;
  margin: 0;
  padding: 0 16px;
  color: #151515;
  font-size: .82rem;
  font-weight: 800;
  background: var(--color-white);
  border: 1px solid #ddd;
  border-radius: 5px;
}

.checkout-option+.checkout-option {
  margin-top: 9px;
}

.checkout-option.active {
  border-color: #ff8a00;
  box-shadow: 0 0 0 1px rgba(255, 138, 0, .08);
}

.checkout-option>span {
  display: flex;
  align-items: center;
  gap: 11px;
}

.payment-option {
  min-height: 52px;
}

.mini-payments {
  gap: 16px;
}

.mini-payments span {
  min-width: 42px;
  height: 24px;
  font-size: .6rem;
}

.crypto-marks {
  display: flex;
  gap: 10px;
}

.crypto-marks span {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: #fff;
  font-size: .55rem;
  font-weight: 900;
  background: #f7931a;
  border-radius: 50%;
}

.crypto-marks span:nth-child(2) {
  background: #627eea;
}

.paypal-mark {
  color: #0b5ea8;
  font-size: .9rem;
  font-style: italic;
  font-weight: 900;
}

.checkout-summary {
  position: sticky;
  top: 104px;
  max-height: calc(100vh - 128px);
  overflow-y: auto;
  padding: 26px;
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.checkout-summary h2 {
  position: relative;
  margin: 0 0 24px;
  padding-bottom: 14px;
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
}

.checkout-summary h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 42px;
  height: 2px;
  background: #ff8a00;
}

.checkout-summary-items {
  display: grid;
}

.checkout-summary-items article {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #e4e4e4;
}

.checkout-summary-items img {
  width: 62px;
  height: 70px;
  object-fit: contain;
}

.checkout-summary-items strong,
.checkout-summary-items span,
.checkout-summary-items small {
  display: block;
}

.checkout-summary-items strong {
  color: #111;
  font-size: .92rem;
  font-weight: 900;
}

.checkout-summary-items span,
.checkout-summary-items small {
  color: #5f5f5f;
  font-size: .78rem;
}

.checkout-summary-items small {
  margin-top: 10px;
}

.checkout-summary-items b {
  color: #111;
  font-size: .95rem;
  font-weight: 900;
}

.checkout-total-lines {
  display: grid;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid #dedede;
}

.checkout-total-lines>div,
.checkout-total {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.checkout-total-lines span {
  color: #2f2f2f;
  font-size: .9rem;
}

.checkout-total-lines strong {
  color: #111;
  font-size: .9rem;
  font-weight: 900;
}

.checkout-total-lines .discount span,
.checkout-total-lines .discount strong {
  color: #139614;
}

.checkout-total {
  align-items: center;
  margin: 18px 0 14px;
  text-transform: uppercase;
}

.checkout-total span {
  font-size: .98rem;
  font-weight: 900;
}

.checkout-total strong {
  color: #ff8500;
  font-size: 1.75rem;
  font-weight: 900;
}

.checkout-savings,
.checkout-secure {
  margin: 0;
  text-align: center;
}

.checkout-savings {
  margin-bottom: 22px;
  color: #149115;
  font-size: .84rem;
  font-weight: 700;
}

.checkout-savings i,
.checkout-secure i {
  margin-right: 7px;
}

.checkout-summary .btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: var(--color-black);
}

.checkout-summary .btn:hover {
  color: var(--color-black);
  background: var(--color-primary);
}

.checkout-secure {
  margin-top: 22px;
  color: #777;
  font-size: .78rem;
}

.checkout-secure i {
  color: #ff8a00;
}

.checkout-trust {
  padding-top: 24px;
}

.search-page .site-header {
  position: sticky;
  background: #030303;
}

.search-hero {
  min-height: 330px;
  padding: 62px 0 48px;
  color: var(--color-white);
  background: var(--color-black) url("../images/hero-performance.png") right 35% bottom/auto 120% no-repeat;
  /* background: var(--color-black) url("../images/hero-performance.png") right 12% bottom/auto 124% no-repeat; */
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.search-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .86) 40%, rgba(0, 0, 0, .22) 70%, rgba(0, 0, 0, .42) 100%);
}

.search-hero::after {
  content: "";
  position: absolute;
  inset: -22%;
  background: linear-gradient(128deg, transparent 34%, rgba(245, 168, 23, .09) 37%, rgba(245, 168, 23, .43) 38%, transparent 40%, transparent 48%, rgba(245, 168, 23, .31) 50%, transparent 52%, transparent 58%, rgba(245, 168, 23, .24) 60%, transparent 62%);
  pointer-events: none;
}

.search-hero .container {
  position: relative;
  z-index: 1;
}

.search-hero-copy {
  max-width: 560px;
}

.search-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 5.7vw, 4.85rem);
  font-weight: 700;
  line-height: .95;
}

.search-hero h1 span {
  color: var(--color-primary);
}

.search-hero-copy>p:not(.eyebrow) {
  margin: 18px 0 22px;
  color: #f1f1f1;
  font-size: .96rem;
  font-weight: 600;
}

.search-hero-form {
  display: grid;
  width: min(500px, 100%);
  height: 56px;
  grid-template-columns: 46px 1fr 44px;
  align-items: center;
  color: #111;
  background: var(--color-white);
  border-radius: 7px;
  box-shadow: 0 18px 35px rgba(0, 0, 0, .22);
}

.search-hero-form>i {
  color: #222;
  text-align: center;
}

.search-hero-form input {
  min-width: 0;
  height: 100%;
  color: #151515;
  font-size: .9rem;
  font-weight: 600;
  background: transparent;
  border: 0;
  outline: 0;
}

.search-hero-form button {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #111;
  background: transparent;
  border: 0;
}

.track-order-form .btn i {
  /* margin-left: 0; */
}

.search-results-page {
  padding-top: 26px;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.search-breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: #5f5f5f;
  font-size: .82rem;
}

.search-breadcrumb i {
  color: #858585;
  font-size: .68rem;
}

.search-breadcrumb span {
  color: #111;
}

.search-sidebar .filter-block h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.search-sidebar .filter-block input:checked {
  accent-color: #ff8a00;
}

.search-sidebar .filter-block label {
  font-weight: 700;
}

.search-sidebar .filter-block label:has(input:checked) {
  color: #111;
}

.search-sidebar .filter-block h2 i {
  font-size: .7rem;
}

.light-clear {
  color: #111;
  background: var(--color-white);
  border: 1px solid #d6d6d6;
}

.light-clear:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.search-pagination {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.search-pagination a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #111;
  font-size: .8rem;
  font-weight: 900;
  background: var(--color-white);
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  transition: color .22s, background .22s, border-color .22s, transform .22s;
}

.search-pagination a.active,
.search-pagination a:hover {
  color: var(--color-black);
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.order-success-page .site-header {
  position: sticky;
  background: #030303;
}

.success-hero {
  min-height: 350px;
  padding: 34px 0 42px;
  color: var(--color-white);
  text-align: center;
  background: radial-gradient(circle at 50% 8%, rgba(255, 255, 255, .05), transparent 24%), var(--color-black);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  overflow: hidden;
}

.success-hero::before,
.success-hero::after {
  content: "";
  position: absolute;
  inset: -18%;
  pointer-events: none;
}

.success-hero::before {
  background: linear-gradient(128deg, transparent 13%, rgba(245, 168, 23, .09) 16%, rgba(245, 168, 23, .45) 17%, transparent 19%, transparent 25%, rgba(245, 168, 23, .28) 27%, transparent 29%);
}

.success-hero::after {
  background: linear-gradient(128deg, transparent 66%, rgba(245, 168, 23, .11) 69%, rgba(245, 168, 23, .48) 70%, transparent 72%, transparent 78%, rgba(245, 168, 23, .3) 80%, transparent 82%);
}

.success-hero .container {
  position: relative;
  z-index: 1;
}

.success-hero-copy {
  max-width: 820px;
  margin: 0 auto;
}

.success-check {
  display: grid;
  width: 74px;
  height: 74px;
  margin: 0 auto 24px;
  place-items: center;
  color: #2fc338;
  font-size: 2.35rem;
  border: 4px solid #22a928;
  border-radius: 50%;
}

.success-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  /* font-size: clamp(2.75rem, 5vw, 4.25rem); */
  font-size: clamp(2.75rem, 4vw, 4.15rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.success-hero h1 span {
  color: var(--color-primary);
  white-space: nowrap;
}

.success-hero p {
  max-width: 530px;
  margin: 18px auto 0;
  color: #eeeeee;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.6;
}

.success-order-id {
  margin-top: 18px !important;
}

.success-order-id strong {
  color: var(--color-primary);
}

.success-whatsapp-redirect {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: none !important;
  margin-top: 16px !important;
  padding: 10px 14px;
  color: #fff !important;
  background: rgba(37, 211, 102, .14);
  border: 1px solid rgba(37, 211, 102, .38);
  border-radius: 999px;
  font-size: .86rem !important;
  line-height: 1.35 !important;
}

.success-whatsapp-redirect strong {
  display: inline-grid;
  min-width: 24px;
  height: 24px;
  place-items: center;
  color: #07140c;
  background: #25d366;
  border-radius: 50%;
  font-weight: 900;
}

.success-hero .btn {
  min-width: 235px;
  margin-top: 22px;
}

.success-main {
  padding-top: 22px;
  padding-bottom: 28px;
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.success-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr) 420px;
  gap: 16px;
  align-items: stretch;
}

.success-side {
  display: grid;
  gap: 14px;
}

.success-card {
  padding: 26px;
  background: var(--color-white);
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .055);
}

.success-card h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.success-card h2 i {
  margin-right: 10px;
  color: #ff8a00;
}

.success-card p {
  margin: 0;
  color: #1b1b1b;
  font-size: .88rem;
  line-height: 1.65;
}

.success-card p a {
  color: #ff8a00;
  font-weight: 800;
}

.order-timeline {
  display: grid;
  gap: 18px;
  padding-left: 18px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
}

.timeline-item::after {
  content: "";
  position: absolute;
  top: 32px;
  left: 16px;
  width: 1px;
  height: calc(100% + 16px);
  border-left: 1px dashed #9e9e9e;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ff8a00;
  background: #fff5e8;
  border: 1px solid rgba(255, 138, 0, .35);
  border-radius: 50%;
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item strong {
  color: #111;
  font-size: .86rem;
  font-weight: 900;
}

.timeline-item span {
  margin-top: 6px;
  color: #4f4f4f;
  font-size: .78rem;
  line-height: 1.45;
}

.order-detail-card {
  min-height: 100%;
}

.order-detail-list {
  display: grid;
  gap: 0;
  margin: 0;
}

.order-detail-list>div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 0 0 17px;
}

.order-detail-list dt,
.order-detail-list dd {
  margin: 0;
  color: #171717;
  font-size: .86rem;
}

.order-detail-list dt {
  font-weight: 900;
}

.order-detail-list dd {
  text-align: right;
  line-height: 1.6;
}

.paid-line {
  margin-top: auto;
  padding-top: 22px !important;
  border-top: 1px solid #dedede;
}

.paid-line dd {
  color: #ff8500;
  font-size: 1.25rem;
  font-weight: 900;
}

.success-summary h2 {
  position: relative;
  padding-bottom: 15px;
}

.success-summary h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 44px;
  height: 2px;
  background: #ff8a00;
}

.recommended-products {
  position: relative;
  margin-top: 22px;
}

.recommend-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin: 0 0 14px;
}

.recommend-head .eyebrow {
  margin: 0;
}

.recommend-head button {
  position: absolute;
  right: -8px;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #4e4e4e;
  background: var(--color-white);
  border: 1px solid #e6e6e6;
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .1);
}

.recommended-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.recommended-grid .shop-product-card.product-card {
  min-height: 228px;
  padding: 14px;
}

.recommended-grid .shop-product-card.product-card img {
  width: 100px;
  height: 112px;
}

.recommended-grid .shop-product-card.product-card h3 {
  min-height: 28px;
  font-size: .74rem;
}

.success-trust {
  padding-top: 20px;
}

.product-detail-page .site-header {
  position: sticky;
  background: #030303;
}

.product-detail-main {
  background: linear-gradient(180deg, #fff 0%, #f7f7f7 100%);
}

.product-detail-top {
  padding: 24px 0 20px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 24px;
  color: #5f5f5f;
  font-size: .8rem;
}

.product-breadcrumb a {
  color: #5f5f5f;
  font-weight: 600;
}

.product-breadcrumb i,
.product-breadcrumb .back-link {
  color: #000 !important;
}

.product-breadcrumb a:hover {
  color: var(--color-primary);
}

.product-breadcrumb i {
  color: #999;
  font-size: .62rem;
}

.product-breadcrumb span {
  color: #111;
  font-weight: 700;
}

/* Peptide calculator */
.peptide-calculator-page {
  padding: 42px 0 80px;
  color: var(--color-text);
  font-family: var(--font-body);
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-surface) 100%);
}

.peptide-calculator-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 48px;
  align-items: center;
  margin-bottom: 28px;
  padding: 38px 42px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 48%, rgba(245, 168, 23, .18), transparent 25%),
    linear-gradient(115deg, #050505 0%, #111 58%, #242424 100%);
  border: 1px solid #2f2f2f;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .14);
  overflow: hidden;
}

.peptide-calculator-hero::after {
  position: absolute;
  top: -90px;
  right: -55px;
  z-index: -1;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(245, 168, 23, .12);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(255, 255, 255, .018),
    0 0 0 96px rgba(245, 168, 23, .025);
}

.peptide-back-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 20px;
  color: #d6d6d6;
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.peptide-calculator-hero h1 {
  margin: 4px 0 10px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.6vw, 3.15rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.peptide-calculator-hero>div:first-child>p:last-child {
  max-width: 690px;
  margin: 0;
  color: #cfcfcf;
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.7;
}

.peptide-calculator-product {
  position: relative;
  display: flex;
  justify-self: end;
  align-items: center;
  justify-content: center;
  /* width: 260px; */
  /* padding: 18px; */
  width: auto;
  height: 220px;
  background: linear-gradient(145deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .035));
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  box-shadow:
    0 24px 48px rgba(0, 0, 0, .32),
    inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}

.peptide-calculator-product::before {
  position: absolute;
  right: 20px;
  bottom: 12px;
  left: 20px;
  height: 24px;
  content: "";
  background: rgba(245, 168, 23, .28);
  border-radius: 50%;
  filter: blur(18px);
}

.peptide-calculator-product img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
  filter: drop-shadow(0 16px 18px rgba(0, 0, 0, .35));
}

.peptide-calculator-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 22px;
}

.peptide-calculator-main,
.peptide-calculator-result {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.peptide-calculator-main {
  padding: 26px;
}

.peptide-field {
  padding: 22px;
  background: #fafafa;
  border: 1px solid #e3e3e3;
  border-radius: var(--radius);
}

.peptide-field h2 {
  margin: 0 0 17px;
  color: #171717;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.35;
}

.peptide-syringe-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.peptide-syringe-option,
.peptide-choice,
.peptide-custom-input {
  font-family: var(--font-body);
}

.peptide-syringe-option,
.peptide-choice {
  color: #222;
  background: var(--color-white);
  border: 1px solid #d9d9d9;
  border-radius: var(--radius);
}

.peptide-syringe-option {
  min-height: 104px;
  display: grid;
  gap: 5px;
  place-items: center;
  padding: 14px;
}

.peptide-syringe-option i {
  color: var(--color-primary);
  font-size: 1.35rem;
}

.peptide-syringe-option strong,
.peptide-syringe-option small {
  display: block;
}

.peptide-syringe-option small {
  color: #777;
  font-size: .78rem;
}

.peptide-syringe-option strong {
  font-size: .9rem;
}

.peptide-syringe-option.active,
.peptide-choice.active {
  color: #111;
  background: #fff6e5;
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(245, 168, 23, .14);
}

.peptide-syringe-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.peptide-syringe-meta div {
  padding: 14px;
  border-right: 1px solid #e1e1e1;
}

.peptide-syringe-meta div:last-child {
  border-right: 0;
}

.peptide-syringe-meta span,
.peptide-syringe-meta strong {
  display: block;
}

.peptide-syringe-meta span {
  margin-bottom: 5px;
  color: #777;
  font-size: .7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.peptide-syringe-meta strong {
  font-size: .8rem;
  line-height: 1.4;
}

.peptide-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.peptide-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.peptide-choice {
  min-height: 38px;
  padding: 8px 13px;
  font-size: .78rem;
  font-weight: 800;
}

.peptide-custom-input {
  display: none;
  width: 100%;
  min-height: 42px;
  margin-top: 12px;
  padding: 10px 12px;
  color: var(--color-text);
  background: var(--color-white);
  border: 1px solid #d5d5d5;
  border-radius: var(--radius);
  font-size: .88rem;
}

.peptide-custom-input.active {
  display: block;
}

.peptide-field-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  background: #111;
  border-color: #111;
}

.peptide-field-summary span {
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.peptide-field-summary strong {
  margin: 7px 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: 2rem;
}

.peptide-field-summary p {
  margin: 0;
  color: #aaa;
  font-size: .78rem;
  line-height: 1.5;
}

.peptide-calculator-result {
  align-self: start;
  padding: 25px;
}

.peptide-result-card {
  padding: 22px;
  text-align: center;
  color: #fff;
  background: #090909;
  border-radius: 9px;
}

.peptide-result-card span,
.peptide-result-card strong {
  display: block;
}

.peptide-result-card span {
  color: var(--color-primary);
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.peptide-result-card strong {
  margin-top: 6px;
  font-size: 1.05rem;
}

.peptide-result-card b {
  color: #fff;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
}

.peptide-syringe-visual {
  position: relative;
  height: 48px;
  margin: 26px 12px;
  color: #111;
  background: #f1f1f1;
  border: 3px solid #222;
  border-radius: 8px 18px 18px 8px;
  overflow: hidden;
}

.peptide-syringe-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(90deg, #ffc44f, var(--color-primary));
  transition: width .3s ease;
}

.peptide-syringe-visual b {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: .78rem;
}

.peptide-calculator-result>p {
  color: #444;
  font-size: .88rem;
  line-height: 1.6;
  text-align: center;
}

.peptide-scale {
  position: relative;
  height: 52px;
  margin: 28px 5px 20px;
  border-top: 2px solid #222;
}

.peptide-scale>span {
  position: absolute;
  top: -9px;
  z-index: 2;
  width: 3px;
  height: 24px;
  background: var(--color-primary);
  transform: translateX(-50%);
}

.peptide-scale>div span {
  position: absolute;
  top: -2px;
  width: 1px;
  height: 10px;
  background: #555;
}

.peptide-scale em {
  position: absolute;
  top: 14px;
  left: 0;
  color: #777;
  font-size: .65rem;
  font-style: normal;
  transform: translateX(-50%);
}

.peptide-result-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.peptide-result-meta div {
  padding: 13px;
  background: #f6f6f6;
  border-radius: 7px;
}

.peptide-result-meta span,
.peptide-result-meta strong {
  display: block;
}

.peptide-result-meta span {
  margin-bottom: 5px;
  color: #777;
  font-size: .7rem;
  text-transform: uppercase;
}

.peptide-result-meta strong {
  font-size: .85rem;
}

.peptide-warning {
  display: none;
  margin-top: 14px;
  padding: 12px;
  color: #9d1c1c;
  font-size: .78rem;
  background: #fff0f0;
  border: 1px solid #ffcaca;
  border-radius: 7px;
}

.peptide-warning.active {
  display: block;
}

.peptide-disclaimer {
  display: block;
  margin-top: 16px;
  color: #707070;
  font-size: .72rem;
  line-height: 1.55;
}

@media (max-width: 991px) {

  .peptide-calculator-hero,
  .peptide-calculator-shell {
    grid-template-columns: 1fr;
  }

  .peptide-calculator-product {
    justify-self: start;
    width: 240px;
    height: 200px;
  }
}

@media (max-width: 767px) {
  .peptide-calculator-page {
    padding: 24px 0 50px;
  }

  .peptide-calculator-hero,
  .peptide-calculator-main,
  .peptide-calculator-result {
    padding: 18px;
  }

  .peptide-calculator-product {
    justify-self: center;
    width: min(100%, 240px);
    height: 190px;
  }

  .peptide-fields-grid,
  .peptide-syringe-options,
  .peptide-syringe-meta {
    grid-template-columns: 1fr;
  }

  .peptide-syringe-meta div {
    border-right: 0;
    border-bottom: 1px solid #e1e1e1;
  }
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 46px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 28px;
}

.product-thumbs {
  display: grid;
  align-content: start;
  gap: 16px;
}

.product-thumbs button {
  display: grid;
  width: 82px;
  height: 92px;
  place-items: center;
  background: var(--color-white);
  border: 1px solid #dedede;
  border-radius: 8px;
  overflow: hidden;
}

.product-thumbs button.active {
  border: 3px solid var(--color-primary);
}

.product-thumbs img {
  width: 62px;
  height: 72px;
  object-fit: contain;
}

.tablet-dots {
  width: 54px;
  height: 28px;
  background-image: radial-gradient(#d9d9d9 4px, transparent 5px);
  background-size: 16px 14px;
}

.product-main-image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 520px;
  min-height: 0;
  margin: 0;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, .07);
  border-radius: 12px;
  overflow: hidden;
}

.product-main-image>img {
  display: block;
  width: 100%;
  height: 530px;
  max-height: none;
  object-fit: contain;
  filter: none;
}

.product-main-image .tag {
  top: 22px;
  right: 22px;
  left: auto;
  z-index: 2;
}

.product-main-image figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 18px 24px;
  color: var(--color-white);
  font-size: .82rem;
  font-weight: 800;
  background: rgba(0, 0, 0, .72);
}

.product-main-image figcaption i {
  margin-right: 8px;
}

.product-purchase {
  padding-top: 8px;
}

.product-category-pill {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  color: #ff8500;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #fff0d8;
  border-radius: 999px;
}

.product-purchase h1 {
  margin: 0;
  color: #111;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.15rem);
  font-weight: 700;
  line-height: .94;
}

.product-purchase h1 span {
  display: block;
  font-family: var(--font-body);
  font-size: .5em;
  font-weight: 500;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.product-rating span,
.review-score span,
.review-card>span {
  color: var(--color-primary);
  letter-spacing: .08em;
}

.product-rating small {
  color: #333;
  font-style: italic;
}

.product-price {
  display: block;
  margin-top: 20px;
  color: #111;
  font-size: 2.25rem;
  font-weight: 900;
}

.product-assurance {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.product-assurance div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  font-size: .82rem;
  font-weight: 700;
}

.product-assurance i {
  color: #54c340;
  font-size: 1.05rem;
}

.product-quantity {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 26px;
  font-weight: 900;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 24px;
}

.buy-now-btn {
  color: var(--color-primary);
  background: var(--color-black);
  border: 1px solid var(--color-primary);
}

.buy-now-btn:hover {
  color: var(--color-black);
  background: var(--color-primary);
}

.secure-payment {
  margin-top: 18px;
  color: #555;
  font-size: .8rem;
  font-weight: 700;
}

.secure-payment .payment-badges {
  justify-content: flex-start;
  margin-top: 8px;
}

.secure-payment .payment-badges span.payment-image {
  width: 118px;
  height: 42px;
  background: transparent;
  border: 1px solid #00000045;
  border-radius: 5px;
}

.product-benefit-strip,
.product-info-card,
.reviews-panel {
  background: var(--color-white);
  border: 1px solid #e1e1e1;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .04);
}

.product-benefit-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 30px;
  padding: 26px 24px;
}

.product-benefit-strip>div {
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 18px;
  align-items: center;
  padding: 0 22px;
  border-right: 1px solid #dedede;
}

.product-benefit-strip>div:last-child {
  border-right: 0;
}

.product-benefit-strip i {
  grid-row: span 2;
  color: var(--color-primary);
  font-size: 2.6rem;
}

.product-benefit-strip strong {
  font-size: .95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-benefit-strip span {
  color: #555;
  font-size: .75rem;
  line-height: 1.45;
}

.product-info-section {
  padding: 0 0 42px;
}

.product-info-card {
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(var(--visible-tabs, 6), 1fr);
  border-bottom: 1px solid #dedede;
}

.product-tabs a {
  position: relative;
  padding: 21px 18px;
  color: #111;
  font-size: .82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.product-tabs a.active {
  color: var(--color-primary);
}

.product-tabs a.active::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 2px;
  background: var(--color-primary);
}

.product-info-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 1fr) 260px;
  gap: 36px;
  padding: 30px 24px;
}

.product-info-grid.has-no-report {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, .9fr);
}

.product-info-grid.has-fallback-description.has-no-report {
  grid-template-columns: 1fr;
}

.product-info-grid.has-fallback-description .product-description {
  border-right: 0;
  padding-right: 0;
}

/* .product-specs { */
.product-description {
  border-right: 1px solid #dedede;
  padding-right: 34px;
}

.product-description h2,
.usage-panel h2,
.reviews-panel h2,
.related-products h2 {
  margin: 0 0 18px;
  color: #111;
  font-size: 1.15rem;
  font-weight: 900;
}

.product-description p {
  color: #222;
  font-size: .86rem;
  line-height: 1.75;
}

.product-detail-summary {
  max-width: 520px;
  margin: 0 0 18px;
  color: #333;
  font-size: .92rem;
  line-height: 1.65;
}

.product-description :is(p, ul, ol),
.dynamic-rich-content :is(p, ul, ol) {
  margin: 0 0 14px;
  color: #222;
  font-size: .86rem;
  line-height: 1.75;
}

.product-description :is(ul, ol),
.dynamic-rich-content :is(ul, ol) {
  padding-left: 20px;
}

.product-description :is(h2, h3, h4),
.dynamic-rich-content :is(h2, h3, h4) {
  margin: 0 0 16px;
  color: #111;
  font-weight: 900;
}

.dynamic-rich-content table {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dedede;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
}

.dynamic-rich-content th,
.dynamic-rich-content td {
  padding: 10px 14px;
  border-bottom: 1px solid #e2e2e2;
  color: #111;
  font-size: .8rem;
}

.dynamic-rich-content th {
  background: #fafafa;
  font-weight: 900;
}

.dynamic-rich-content tr:last-child td {
  border-bottom: 0;
}

.dynamic-rich-content .ingredient-total-row td,
.dynamic-rich-content .ingredient-total-row th {
  font-weight: 900;
}

.product-specs {
  display: grid;
  align-content: start;
  gap: 12px;
  margin: 0;
  padding-right: 34px;
  border-right: 1px solid #dedede;
}

.product-specs div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 12px;
}

.product-specs dt,
.product-specs dd {
  margin: 0;
  font-size: .78rem;
}

.product-specs dt {
  font-weight: 900;
}

.product-info-grid.has-no-report .product-specs {
  padding-right: 0;
  border-right: 0;
}

.lab-report h3 {
  margin: 0 0 14px;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-report {
  min-width: 0;
}

.report-preview {
  display: grid;
  height: 150px;
  place-items: center;
  margin-bottom: 12px;
  background: #f9f9f9;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
}

.report-preview img {
  width: 130px;
  height: auto;
  opacity: .85;
}

.lab-report button {
  width: 100%;
  min-height: 40px;
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  background: var(--color-black);
  border: 0;
  border-radius: 4px;
}

.usage-panel {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  align-items: center;
  margin-top: 24px;
  padding: 28px;
  color: var(--color-white);
  background: linear-gradient(135deg, #050505, #161616);
  border-radius: 8px;
  overflow: hidden;
}

.usage-copy h2 {
  color: var(--color-primary);
  text-transform: uppercase;
}

.usage-copy p {
  color: #f0f0f0;
  font-size: .86rem;
  line-height: 1.7;
}

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

.usage-steps div {
  position: relative;
  text-align: center;
}

.usage-steps i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin: 0 auto 12px;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.usage-steps strong,
.usage-steps span,
.usage-steps small {
  display: block;
}

.usage-steps strong {
  font-size: .83rem;
  text-transform: uppercase;
}

.usage-steps span,
.usage-steps small {
  color: #d8d8d8;
  font-size: .72rem;
  line-height: 1.45;
}

.reviews-panel {
  margin-top: 24px;
  padding: 26px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: 140px 185px repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.review-score strong {
  display: block;
  color: #111;
  font-size: 4rem;
  font-weight: 900;
  line-height: .9;
}

.review-score small,
.review-card small {
  display: block;
  color: #666;
  font-size: .72rem;
}

.review-bars {
  display: grid;
  gap: 8px;
  align-content: center;
}

.review-bars div {
  display: grid;
  grid-template-columns: 18px 1fr 28px;
  gap: 8px;
  align-items: center;
  font-size: .75rem;
}

.review-bars b {
  height: 8px;
  background: #ececec;
  border-radius: 999px;
  overflow: hidden;
}

.review-bars i {
  display: block;
  height: 100%;
  background: var(--color-primary);
}

.review-card {
  padding: 20px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.review-card p {
  min-height: 62px;
  margin: 10px 0 14px;
  color: #333;
  font-size: .82rem;
  line-height: 1.55;
}

.review-card div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-card img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
}

.review-card strong {
  color: #111;
  font-size: .78rem;
}

.related-products {
  margin-top: 24px;
  padding: 18px;
  color: var(--color-white);
  background: #050505;
  border-radius: 8px;
}

.related-products h2 {
  color: var(--color-white);
  text-transform: uppercase;
}

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

.related-card {
  position: relative;
  padding: 18px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .03));
  border: 1px solid #3f3f3f;
  border-radius: 8px;
}

.related-card.is-out-of-stock {
  opacity: .82;
}

.related-card img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 10px;
  object-fit: contain;
}

.related-card h3 {
  min-height: 46px;
  margin: 8px 0;
  color: var(--color-white);
  font-size: .86rem;
  font-weight: 900;
}

.related-card h3 span {
  color: #c7c7c7;
  font-weight: 600;
}

.related-card strong {
  display: block;
  text-align: left;
}

.related-card button {
  position: absolute;
  right: 16px;
  bottom: 14px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--color-black);
  background: var(--color-primary);
  border: 0;
  border-radius: 6px;
}

.related-card .notify-stock-btn {
  width: auto;
  min-width: 92px;
  padding: 0 10px;
  color: var(--color-primary);
  font-size: .62rem;
  font-weight: 900;
  text-transform: uppercase;
  background: #111;
  border: 1px solid rgba(245, 168, 23, .65);
}

.product-trust {
  margin-top: 24px;
  padding: 26px 0;
}

.shop-hero::after,
.cart-hero::after,
.checkout-hero::after,
.search-hero::after {
  transform: translate3d(-46%, 0, 0) skewX(-8deg);
  animation: heroLightSweep 8.5s cubic-bezier(.55, 0, .28, 1) infinite;
  mix-blend-mode: screen;
}

.shop-hero::before,
.cart-hero::before,
.checkout-hero::before,
.search-hero::before {
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
  /* animation: heroVignetteBreath 7s ease-in-out infinite alternate; */
}

.success-hero::before {
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
}

.success-hero::after {
  animation: heroBackdropDrift 18s ease-in-out infinite alternate;
}

.shop-hero-copy,
.cart-hero-copy,
.checkout-hero-copy,
.search-hero-copy,
.success-hero-copy {
  animation: heroContentReveal .95s cubic-bezier(.18, .82, .24, 1) both;
}

.shop-hero h1 span,
.cart-hero h1 span,
.checkout-hero h1 span,
.search-hero h1 span,
.success-hero h1 span {
  animation: heroGoldFocus 2.4s ease both .55s;
}

.shop-hero .btn-gold,
.cart-hero .btn-gold,
.checkout-hero .btn-gold,
.search-hero .btn-gold,
.success-hero .btn-gold {
  animation: heroCtaGlow 5.5s ease-in-out infinite;
}

.shop-hero-features>div {
  animation: heroFeatureIn .75s cubic-bezier(.2, .82, .24, 1) both;
}

.shop-hero-features>div:nth-child(1) {
  animation-delay: .58s;
}

.shop-hero-features>div:nth-child(2) {
  animation-delay: .68s;
}

.shop-hero-features>div:nth-child(3) {
  animation-delay: .78s;
}

.shop-hero-features>div:nth-child(4) {
  animation-delay: .88s;
}

.shop-hero-features i,
.success-check {
  animation: heroIconPulse 3.4s ease-in-out infinite;
}

.tab-content-card {
  margin-bottom: 22px;
}

.tab-content-card.is-hidden {
  display: none;
}

.description-assurance {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin: 0 16px 16px;
  padding: 18px;
  border: 1px solid #e1e1e1;
  border-radius: 8px;
}

.description-assurance>div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  align-items: center;
  padding: 0 18px;
  border-right: 1px solid #dedede;
}

.description-assurance>div:last-child {
  border-right: 0;
}

.description-assurance i,
.benefit-list i,
.ingredient-certifications i,
.faq-support i {
  display: grid;
  grid-row: span 2;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--color-primary);
  font-size: 1.45rem;
  /* background: #fff8ee; */
  border: 1px solid #ffe0b5;
  border-radius: 8px;
}

.description-assurance strong,
.description-assurance span {
  display: block;
}

.description-assurance strong {
  color: #111;
  font-size: .82rem;
  font-weight: 900;
}

.description-assurance span {
  color: #555;
  font-size: .72rem;
  line-height: 1.4;
}

.benefits-tab-grid,
.ingredients-tab-grid,
.faq-tab-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 46px;
  padding: 30px;
  align-items: center;
}

.ingredients-tab-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  align-items: start;
}

.dosage-tab-grid.is-single-column,
.ingredients-tab-grid.is-single-column {
  grid-template-columns: 1fr;
}

.benefits-tab-grid h2,
.ingredients-tab-grid h2,
.faq-tab-grid h2,
.dosage-copy h2,
.reviews-tab-content h2 {
  margin: 0 0 20px;
  color: #111;
  font-size: 1.2rem;
  font-weight: 900;
}

.benefit-list,
.ingredient-certifications {
  display: grid;
  gap: 22px;
}

.benefit-list>div,
.ingredient-certifications>div {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
}

.benefit-list strong,
.benefit-list span,
.ingredient-certifications strong,
.ingredient-certifications span {
  display: block;
}

.benefit-list strong,
.ingredient-certifications strong {
  color: #111;
  font-size: .92rem;
  font-weight: 900;
}

.benefit-list span,
.ingredient-certifications span {
  color: #333;
  font-size: .78rem;
  line-height: 1.45;
}

.ingredient-certifications i {
  color: #18ad55;
  background: #effcf4;
  border-color: #bcebc9;
}

.ingredients-tab-grid .dynamic-rich-content>p {
  margin-bottom: 18px;
}

.ingredients-tab-grid .ingredient-table {
  width: 100%;
}

.benefits-product-shot {
  position: relative;
  display: grid;
  min-height: 325px;
  place-items: center;
  margin: 0;
  background: radial-gradient(circle at 52% 52%, rgba(245, 168, 23, .12), transparent 30%), linear-gradient(135deg, #050505, #151515);
  border-radius: 8px;
  overflow: hidden;
}

.benefits-product-shot::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: linear-gradient(128deg, transparent 34%, rgba(245, 168, 23, .12) 38%, rgba(245, 168, 23, .5) 39%, transparent 41%, transparent 52%, rgba(245, 168, 23, .28) 54%, transparent 56%);
}

.benefits-product-shot img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 325px;
  object-fit: contain;
  filter: none;
}

.dosage-tab-grid {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 36px;
  align-items: start;
  padding: 30px;
}

.dosage-copy p,
.ingredients-tab-grid p {
  color: #222;
  font-size: .86rem;
  line-height: 1.65;
}

.dosage-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.dosage-steps::before {
  content: "";
  position: absolute;
  top: 28px;
  right: 13%;
  left: 13%;
  height: 2px;
  background: var(--color-primary);
}

.dosage-steps>div {
  position: relative;
  z-index: 1;
  text-align: center;
}

.dosage-steps i {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin: 0 auto 14px;
  color: var(--color-primary);
  font-size: 1.35rem;
  background: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 50%;
}

.dosage-steps strong,
.dosage-steps span,
.dosage-steps small {
  display: block;
}

.dosage-steps strong {
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dosage-steps span {
  margin-top: 7px;
  color: #111;
  font-size: .78rem;
  font-weight: 900;
}

.dosage-steps small {
  margin-top: 8px;
  color: #333;
  font-size: .72rem;
  line-height: 1.45;
}

.dosage-note {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0 30px 28px;
  padding: 18px;
  background: #fffaf2;
  border: 1px solid #ffe0b5;
  border-radius: 8px;
}

.dosage-note i {
  display: grid;
  width: 38px;
  min-width: 38px;
  height: 38px;
  place-items: center;
  color: #ff8a00;
  border: 1px solid #ff8a00;
  border-radius: 50%;
}

.dosage-note p {
  margin: 0;
  color: #222;
  font-size: .82rem;
  line-height: 1.5;
}

.ingredient-table {
  width: 100%;
  overflow: hidden;
  border: 1px solid #dedede;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 8px;
}

.ingredient-table th,
.ingredient-table td {
  padding: 10px 14px;
  color: #111;
  font-size: .8rem;
  border-bottom: 1px solid #e2e2e2;
}

.ingredient-table th {
  background: #fafafa;
  font-weight: 900;
}

.ingredient-table tr:last-child td {
  border-bottom: 0;
}

.ingredient-certifications i {
  color: #22a950;
  background: #f2fff6;
  border-color: #caefd4;
}

.reviews-tab-content {
  padding: 30px;
}

.review-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.review-dots span {
  width: 8px;
  height: 8px;
  background: #d9d9d9;
  border-radius: 50%;
}

.review-dots span.active {
  background: var(--color-primary);
}

.faq-list {
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.faq-list details {
  background: var(--color-white);
  border-bottom: 1px solid #dedede;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  position: relative;
  padding: 17px 44px 17px 18px;
  color: #111;
  font-size: .84rem;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "\f107";
  position: absolute;
  top: 17px;
  right: 18px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.faq-list details[open] summary::after {
  transform: rotate(180deg);
}

.faq-list p {
  margin: 0;
  padding: 0 18px 17px;
  color: #333;
  font-size: .82rem;
  line-height: 1.55;
}

.faq-support {
  display: grid;
  min-height: 250px;
  place-items: center;
  align-content: center;
  padding: 26px;
  text-align: center;
  border: 1px solid #dedede;
  border-radius: 8px;
}

.faq-support i {
  grid-row: auto;
  width: 64px;
  height: 64px;
  margin-bottom: 18px;
  font-size: 2rem;
  border-radius: 50%;
}

.faq-support h3 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1rem;
  font-weight: 900;
}

.faq-support p {
  margin: 0 0 20px;
  color: #555;
  font-size: .86rem;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

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

@keyframes heroContentReveal {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: translate3d(0, 34px, 0) scale(.985);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes heroBackdropDrift {
  from {
    background-position: center bottom;
  }

  to {
    background-position: 52% bottom;
  }
}

@keyframes heroVignetteBreath {
  from {
    opacity: .92;
  }

  to {
    opacity: 1;
  }
}

@keyframes heroLightSweep {

  0%,
  28% {
    opacity: 0;
    transform: translate3d(-52%, 0, 0) skewX(-8deg);
  }

  42% {
    opacity: .92;
  }

  68%,
  100% {
    opacity: 0;
    transform: translate3d(42%, 0, 0) skewX(-8deg);
  }
}

@keyframes heroGoldFocus {
  from {
    filter: saturate(.75);
    text-shadow: 0 0 0 rgba(245, 168, 23, 0), 0 8px 22px rgba(0, 0, 0, .42);
  }

  to {
    filter: saturate(1.08);
    text-shadow: 0 0 18px rgba(245, 168, 23, .2), 0 8px 22px rgba(0, 0, 0, .42);
  }
}

@keyframes heroFeatureIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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

@keyframes heroIconPulse {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(245, 168, 23, 0);
  }

  50% {
    box-shadow: 0 0 18px rgba(245, 168, 23, .22);
  }
}

@keyframes heroCtaGlow {

  0%,
  100% {
    box-shadow: 0 10px 24px rgba(245, 168, 23, .18);
  }

  50% {
    box-shadow: 0 16px 34px rgba(245, 168, 23, .26);
  }
}

@keyframes successLightDriftLeft {

  0%,
  28% {
    opacity: .2;
    transform: translate3d(-5%, 0, 0) skewX(-8deg);
  }

  48% {
    opacity: .95;
  }

  78%,
  100% {
    opacity: .22;
    transform: translate3d(7%, 0, 0) skewX(-8deg);
  }
}

@keyframes successLightDriftRight {

  0%,
  28% {
    opacity: .22;
    transform: translate3d(6%, 0, 0) skewX(-8deg);
  }

  48% {
    opacity: .95;
  }

  78%,
  100% {
    opacity: .24;
    transform: translate3d(-6%, 0, 0) skewX(-8deg);
  }
}

@keyframes lightSweep {

  0%,
  45% {
    transform: translateX(-45%);
    opacity: 0;
  }

  55% {
    opacity: 1;
  }

  100% {
    transform: translateX(45%);
    opacity: 0;
  }
}

@keyframes productFloat {

  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.25deg);
  }
}

@keyframes sectionBreath {
  from {
    opacity: .98;
  }

  to {
    opacity: 1;
  }
}

@keyframes headingCharReveal {
  from {
    opacity: 0;
    transform: translateY(95%) rotate(5deg);
  }

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

@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 rgba(245, 168, 23, 0);
  }

  50% {
    box-shadow: 0 0 32px rgba(245, 168, 23, .28);
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }

  .animated-heading .heading-char {
    opacity: 1;
    transform: none;
  }

  .reveal-on-scroll,
  .reveal-group>* {
    opacity: 1;
    filter: none;
    transform: none;
  }
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 20px 0 8px;
  }

  .navbar .nav-link {
    display: inline-block;
  }

  .nav-actions {
    margin-top: 15px;
  }

  .hero {
    min-height: 620px;
    background-position: 62% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .97), rgba(0, 0, 0, .68));
  }

  .min-vh-hero {
    min-height: 500px;
  }

  .hero-feature {
    padding: 0 10px;
  }

  .why-intro {
    margin-bottom: 15px;
  }

  .slider-arrow {
    display: none;
  }

  .testimonial-carousel {
    padding: 0 42px;
  }

  .testimonial-slide {
    flex-basis: calc((100% - 26px) / 2);
  }

  .testimonial-slide.is-featured .quote-card {
    min-height: 346px;
    margin-top: 0;
  }

  .testimonial-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .testimonial-stats>div:nth-child(2) {
    border-right: 0;
  }

  .site-footer {
    padding-top: 72px;
  }

  .footer-main {
    grid-template-columns: minmax(240px, .9fr) minmax(0, 1.8fr);
    gap: 46px 34px;
  }

  .footer-newsletter {
    grid-column: span 2;
  }

  .footer-feature-strip {
    margin-top: 58px;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px 0;
  }

  .footer-feature-strip>div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 767.98px) {
  .hero {
    background: var(--color-black) url("../images/banner/mobile/hero-mobile.png") center bottom/cover no-repeat;
  }

  .section-space {
    padding: 52px 0;
  }

  .hero {
    min-height: 680px;
    background-position: 68% center;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .96) 0%, rgba(0, 0, 0, .76) 70%, rgba(0, 0, 0, .55));
  }

  .hero h1 {
    font-size: 3.8rem;
  }

  .hero-copy {
    max-width: 320px;
    font-size: .92rem;
  }

  .hero-feature {
    border: 0;
  }

  .category-card {
    min-height: 190px;
    padding: 12px;
  }

  .category-card>img {
    width: 100px;
    height: 125px;
  }

  .category-card h3 {
    font-size: .75rem;
  }

  .category-card>img.category-art {
    width: 130px;
    height: 125px;
  }

  .wide-card>img.syringe-art {
    width: 210px;
    height: 125px;
  }

  .benefit {
    padding: 10px 5px;
    border: 0;
  }

  .product-card {
    padding: 12px;
  }

  .product-card img {
    width: 110px;
    height: 140px;
  }

  .testimonial-heading h2 {
    font-size: 2.85rem;
  }

  .testimonial-heading>p:last-child {
    font-size: .86rem;
  }

  .testimonial-carousel {
    margin-top: 28px;
    padding: 0;
  }

  .testimonial-track {
    gap: 16px;
    padding-bottom: 20px;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

  .quote-card {
    min-height: 312px;
    padding: 28px;
    border-radius: 14px;
  }

  .quote-card p {
    min-height: calc(1.55em * 3);
    margin: 24px 0 22px;
    font-size: .94rem;
  }

  .quote-card figcaption>img {
    width: 58px;
    height: 58px;
  }

  .testimonial-nav {
    display: none;
  }

  .testimonial-stats {
    padding: 26px 20px;
    grid-template-columns: 1fr;
  }

  .testimonial-stats>div,
  .testimonial-stats>div:nth-child(2) {
    padding: 0 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .35);
  }

  .testimonial-stats>div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .site-footer {
    padding: 20px 0 36px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-brand {
    width: 210px;
    height: 118px;
  }

  .footer-copy {
    margin: 10px 0 24px;
    font-size: .92rem;
  }

  .site-footer h3 {
    margin-bottom: 30px;
  }

  .footer-links a {
    margin-bottom: 15px;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .footer-feature-strip {
    margin-top: 42px;
    padding: 24px 20px;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-feature-strip>div,
  .footer-feature-strip>div:nth-child(2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .footer-feature-strip>div:first-child {
    padding-top: 0;
  }

  .footer-feature-strip>div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .footer-bottom {
    margin-top: 42px;
    padding-top: 24px;
    flex-direction: column;
    align-items: flex-start;
  }

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

  .payment-badges {
    justify-content: flex-start;
  }

  .search-panel {
    padding-top: 86px;
  }

  .search-box,
  .cart-drawer {
    padding: 20px;
  }

  .cart-item {
    grid-template-columns: 58px 1fr auto;
  }

  .cart-item img {
    width: 54px;
    height: 66px;
  }
}

@media only screen and (max-width:510px) {
  .testimonial-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    height: 700px;
  }

  .min-vh-hero {
    min-height: 420px;
  }
}

@media only screen and (min-width:1300px) and (max-width:1550px) {
  .min-vh-hero {
    min-height: 435px;
  }

  .hero {
    height: 600px;
  }

  .footer-main {
    grid-template-columns: minmax(230px, .9fr) minmax(0, 1.8fr);
    gap: 30px;
  }

  .footer-feature-strip>div {
    display: grid;
    column-gap: 15px;
  }

  .footer-feature-strip {
    padding: 30px 20px;
  }

  .footer-feature-strip i {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .footer-feature-strip>div {
    padding: 0px 15px;
  }

  .min-vh-hero {
    min-height: 425px;
  }
}

@media (max-width: 1199.98px) {
  .shop-layout {
    grid-template-columns: 245px 1fr;
    gap: 24px;
  }

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

  .shop-product-card.product-card img {
    width: 132px;
  }

  .shop-trust-grid>div {
    padding: 0 20px;
  }

  .cart-layout {
    grid-template-columns: minmax(0, 1fr) 330px;
  }

  .cart-row {
    grid-template-columns: minmax(230px, 1fr) 95px 118px 95px 30px;
    gap: 12px;
  }

  .checkout-layout {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 30px;
  }

  .checkout-summary-items article {
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 13px;
  }
}

@media (max-width: 991.98px) {
  .shop-hero {
    background-position: 68% bottom;
  }

  .shop-hero-inner {
    min-height: 390px;
  }

  .shop-hero-features,
  .shop-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .shop-sidebar {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-block {
    border-right: 1px solid #e8e8e8;
  }

  .clear-filters {
    grid-column: 1 / -1;
  }

  .bundle-banner,
  .shop-newsletter-inner {
    grid-template-columns: 1fr;
  }

  .shop-trust-grid {
    gap: 26px 0;
  }

  .shop-trust-grid>div:nth-child(2) {
    border-right: 0;
  }

  .cart-hero {
    background-position: 67% bottom;
  }

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

  .order-summary {
    max-width: 480px;
    width: 100%;
    justify-self: end;
  }

  .checkout-hero {
    background-position: 66% bottom;
  }

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

  .checkout-summary {
    position: static;
    max-width: 540px;
    width: 100%;
    max-height: none;
    overflow: visible;
    justify-self: end;
  }

  .checkout-form {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }

  .postcode-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767.98px) {
  .shop-hero {
    background-position: 73% bottom;
    background-size: auto 100%;
  }

  .shop-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 78%, rgba(0, 0, 0, .62));
  }

  .shop-hero-inner {
    min-height: 520px;
    padding-top: 38px;
  }

  .shop-hero-copy {
    max-width: 330px;
  }

  .shop-hero-copy p:last-child {
    font-size: .92rem;
  }

  .shop-hero-features {
    gap: 0;
  }

  .shop-hero-features>div {
    padding: 16px 10px 16px 0;
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .filter-block {
    border-right: 0;
  }

  .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .shop-toolbar button {
    width: 100%;
  }

  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .shop-product-card.product-card {
    min-height: 292px;
    padding: 12px;
  }

  .shop-product-card.product-card img {
    width: 104px;
    height: 126px;
  }

  .shop-product-card.product-card h3 {
    font-size: .76rem;
  }

  .bundle-banner {
    padding: 26px 18px;
  }

  .bundle-products img {
    width: 86px;
    height: 112px;
  }

  .bundle-products img:nth-child(2) {
    width: 112px;
    height: 142px;
  }

  .bundle-products img:nth-child(3) {
    width: 104px;
    height: 105px;
  }

  .shop-trust-grid {
    grid-template-columns: 1fr;
  }

  .shop-trust-grid>div,
  .shop-trust-grid>div:nth-child(2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #ddd;
  }

  .shop-trust-grid>div:last-child {
    border-bottom: 0;
  }

  .shop-newsletter-inner {
    gap: 24px;
  }

  .shop-newsletter .newsletter {
    height: auto;
    flex-direction: column;
    background: transparent;
    border: 0;
  }

  .shop-newsletter .newsletter input {
    height: 56px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 6px;
  }

  .shop-newsletter .newsletter button {
    width: 100%;
    height: 54px;
    border-radius: 6px;
  }

  .cart-hero {
    min-height: 360px;
    padding: 52px 0 46px;
    background-position: 72% bottom;
    background-size: auto 108%;
  }

  .cart-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 78%, rgba(0, 0, 0, .62));
  }

  .cart-hero-copy {
    max-width: 330px;
  }

  .cart-items-panel,
  .order-summary {
    padding: 20px;
  }

  .cart-row-head {
    display: none;
  }

  .cart-row {
    position: relative;
    grid-template-columns: 1fr auto;
    gap: 12px 16px;
    min-height: auto;
    padding: 18px 0;
  }

  .cart-product-cell {
    grid-column: 1 / -1;
    padding-right: 34px;
  }

  .cart-product-cell img {
    width: 68px;
    height: 68px;
  }

  .cart-row>strong:nth-of-type(1)::before {
    content: "Price";
  }

  .cart-row>strong:nth-of-type(2)::before {
    content: "Total";
  }

  .cart-row>strong {
    display: grid;
    gap: 5px;
    font-size: .9rem;
  }

  .cart-row>strong::before {
    color: #777;
    font-size: .66rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .cart-stepper {
    justify-self: end;
  }

  .cart-remove {
    position: absolute;
    top: 20px;
    right: 0;
  }

  .cart-panel-actions {
    flex-direction: column;
  }

  .cart-secondary-btn {
    width: 100%;
  }

  .order-summary {
    max-width: none;
  }

  .summary-line,
  .summary-total {
    align-items: flex-start;
  }

  .checkout-hero {
    min-height: 380px;
    padding: 50px 0 44px;
    background-position: 72% bottom;
    background-size: auto 112%;
  }

  .checkout-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .82) 78%, rgba(0, 0, 0, .62));
  }

  .checkout-hero-copy {
    max-width: 350px;
  }

  .checkout-step-head {
    grid-template-columns: auto 1fr;
  }

  .checkout-step-head p {
    grid-column: 2;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .checkout-fields .span-2 {
    grid-column: auto;
  }

  .checkout-option,
  .payment-option {
    align-items: flex-start;
    min-height: auto;
    padding: 14px;
    flex-direction: column;
  }

  .mini-payments,
  .crypto-marks {
    align-self: stretch;
    justify-content: flex-start;
  }

  .checkout-summary {
    max-width: none;
    padding: 20px;
  }

  .checkout-summary-items article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .checkout-summary-items b {
    grid-column: 2;
  }

  .checkout-total-lines>div,
  .checkout-total {
    /* align-items: flex-start; */
    align-items: center;
  }
}

@media (max-width: 420px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .shop-product-card.product-card img {
    width: 132px;
    height: 146px;
  }

  .cart-hero h1 {
    font-size: 3.25rem;
  }

  .cart-product-cell {
    gap: 13px;
  }

  .cart-product-cell strong {
    font-size: .82rem;
  }

  .cart-stepper {
    width: 96px;
    grid-template-columns: 31px 34px 31px;
  }

  .checkout-hero h1 {
    font-size: 2.9rem;
  }

  .checkout-breadcrumb {
    gap: 10px;
    font-size: .78rem;
  }

  .checkout-summary-items strong {
    font-size: .82rem;
  }

  .checkout-total strong {
    font-size: 1.45rem;
  }
}

@media (max-width: 1199.98px) {
  .search-hero {
    background-position: 65% bottom;
  }

  .success-grid {
    grid-template-columns: 300px minmax(0, 1fr);
  }

  .success-summary {
    grid-column: 1 / -1;
  }

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

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

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

  .lab-report {
    grid-column: 1 / -1;
  }

  .reviews-grid {
    grid-template-columns: 150px 1fr;
  }

  .review-card {
    grid-column: span 1;
  }

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

  .benefits-tab-grid,
  .ingredients-tab-grid,
  .faq-tab-grid {
    grid-template-columns: 1fr;
  }

  .dosage-tab-grid {
    grid-template-columns: 1fr;
  }

  .description-assurance {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 0;
  }

  .description-assurance>div:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 991.98px) {
  .search-hero {
    background-position: 68% bottom;
  }

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

  .success-side {
    grid-template-columns: 1fr 1fr;
  }

  .success-summary {
    grid-column: auto;
  }

  .product-benefit-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .product-benefit-strip>div:nth-child(2) {
    border-right: 0;
  }

  .product-info-grid,
  .usage-panel {
    grid-template-columns: 1fr;
  }

  .product-description,
  .product-specs {
    padding-right: 0;
    border-right: 0;
  }

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

  .dosage-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 20px;
  }

  .dosage-steps::before {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .search-hero {
    min-height: 405px;
    padding: 48px 0 42px;
    background-position: 73% bottom;
    background-size: auto 108%;
  }

  .search-hero::before {
    background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .83) 80%, rgba(0, 0, 0, .62));
  }

  .search-hero-copy {
    max-width: 360px;
  }

  .search-hero h1 {
    font-size: 3rem;
  }

  .search-hero-form {
    height: 52px;
  }

  .search-pagination {
    margin-top: 22px;
  }

  .success-hero {
    min-height: 390px;
    padding: 34px 0 38px;
  }

  .success-hero h1 {
    font-size: 2.8rem;
  }

  .success-check {
    width: 64px;
    height: 64px;
    font-size: 2rem;
  }

  .success-side {
    grid-template-columns: 1fr;
  }

  .success-card {
    padding: 20px;
  }

  .order-detail-list>div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .order-detail-list dd {
    text-align: left;
  }

  .recommended-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .recommend-head button {
    display: none;
  }

  .product-detail-top {
    padding-top: 18px;
  }

  .product-detail-layout {
    gap: 28px;
  }

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

  .product-thumbs {
    grid-template-columns: repeat(4, 1fr);
    order: 2;
  }

  .product-thumbs button {
    width: 100%;
    height: 78px;
  }

  .product-main-image {
    min-height: 390px;
  }

  .product-main-image figcaption {
    padding: 14px;
    font-size: .72rem;
  }

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

  .product-assurance,
  .product-benefit-strip,
  .product-tabs,
  .usage-steps,
  .reviews-grid,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .product-benefit-strip>div,
  .product-benefit-strip>div:nth-child(2) {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .product-benefit-strip>div:last-child {
    border-bottom: 0;
  }

  .product-tabs a {
    padding: 14px 10px;
  }

  .product-info-grid,
  .reviews-panel,
  .usage-panel {
    padding: 20px;
  }

  .description-assurance,
  .benefits-tab-grid,
  .dosage-tab-grid,
  .ingredients-tab-grid,
  .reviews-tab-content,
  .faq-tab-grid {
    margin-right: 0;
    margin-left: 0;
    padding: 20px;
  }

  .description-assurance,
  .dosage-steps {
    grid-template-columns: 1fr;
  }

  .description-assurance>div,
  .description-assurance>div:nth-child(2) {
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid #dedede;
  }

  .description-assurance>div:last-child {
    border-bottom: 0;
  }

  .dosage-note {
    margin: 0 20px 20px;
    align-items: flex-start;
  }

  .ingredient-table {
    display: block;
    overflow-x: auto;
  }
}

@media (max-width: 420px) {
  .search-hero h1 {
    font-size: 2.55rem;
  }

  .search-hero-copy>p:not(.eyebrow) {
    font-size: .85rem;
  }

  .success-hero h1 {
    font-size: 2.35rem;
  }

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

  .product-purchase h1 {
    font-size: 2.45rem;
  }

  .product-price {
    font-size: 1.9rem;
  }

  .product-main-image {
    min-height: 330px;
  }
}

/* Responsive polish for every page */
@media (max-width: 1399.98px) {
  .hero {
    height: auto;
    min-height: 640px;
  }

  .footer-main {
    gap: 38px;
  }

  .footer-feature-strip {
    padding-right: 24px;
    padding-left: 24px;
  }

  .footer-feature-strip>div {
    padding: 0 20px;
  }
}

@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }

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

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

  .product-detail-layout,
  .success-grid {
    grid-template-columns: 1fr;
  }

  .success-summary {
    grid-column: auto;
  }

  .bundle-banner {
    grid-template-columns: minmax(300px, 42%) minmax(280px, 1fr);
    min-height: 190px;
    padding: 26px 38px;
    background-image: linear-gradient(90deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .2) 47%, rgba(0, 0, 0, .72) 100%), url("../images/banner/buy-more.png");
    background-position: left center;
    background-size: auto 100%;
  }

  .bundle-products img {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }

  .brand {
    width: 124px;
    height: 58px;
  }

  .navbar-collapse {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .nav-actions {
    flex-wrap: wrap;
  }

  .section-heading {
    align-items: flex-start !important;
    gap: 16px;
    flex-direction: column;
  }

  .hero,
  .shop-hero,
  .cart-hero,
  .checkout-hero,
  .search-hero {
    background-position: 70% bottom;
  }

  .hero h1,
  .shop-hero h1,
  .cart-hero h1,
  .checkout-hero h1,
  .search-hero h1,
  .success-hero h1 {
    font-size: clamp(3rem, 9vw, 4.6rem);
    white-space: normal;
  }

  .hero-features {
    max-width: none;
  }

  .testimonial-stats,
  .footer-feature-strip,
  .shop-trust-grid,
  .product-benefit-strip,
  .description-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-category-block {
    grid-column: 1 / -1;
  }

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

  .shop-layout,
  .cart-layout,
  .checkout-layout,
  .shop-newsletter-inner,
  .usage-panel,
  .product-info-grid,
  .benefits-tab-grid,
  .ingredients-tab-grid,
  .faq-tab-grid,
  .dosage-tab-grid {
    grid-template-columns: 1fr;
  }

  .order-summary,
  .checkout-summary {
    max-width: none;
    justify-self: stretch;
  }

  .bundle-banner {
    grid-template-columns: 1fr;
    padding: 210px 32px 34px;
    text-align: center;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .04) 0%, rgba(0, 0, 0, .26) 48%, rgba(0, 0, 0, .88) 100%), url("../images/banner/buy-more.png");
    background-position: center top;
    background-size: auto 230px;
  }

  .bundle-products {
    display: none;
  }

  .bundle-banner p:not(.eyebrow) {
    margin-right: auto;
    margin-left: auto;
  }

  .product-main-image {
    min-height: 430px;
  }
}

@media (max-width: 767.98px) {
  .hero-content {
    padding-top: 55px;
  }

  .container {
    max-width: 100%;
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-space {
    padding: 46px 0;
  }

  .btn {
    padding: 13px 20px;
    white-space: normal;
  }

  .hero {
    min-height: 620px;
    background-position: 68% bottom;
  }

  .hero-content {
    padding-top: 118px;
  }

  .min-vh-hero {
    min-height: 330px;
  }

  .hero-copy,
  .shop-hero-copy p:last-child,
  .cart-hero p,
  .checkout-hero-copy,
  .search-hero-copy,
  .success-hero p {
    max-width: 100%;
  }

  .hero h1,
  .shop-hero h1,
  .cart-hero h1,
  .checkout-hero h1,
  .search-hero h1,
  .success-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.8rem);
    line-height: .94;
    white-space: normal;
  }

  .description-assurance,
  .shop-trust-grid,
  .shop-hero-features {
    grid-template-columns: 1fr 1fr;
  }


  .hero-features,
  .testimonial-stats,
  .footer-feature-strip,
  .product-benefit-strip,
  .success-side,
  .usage-steps,
  .dosage-steps {
    grid-template-columns: 1fr;
  }

  .footer-feature-strip {
    align-items: baseline;
  }

  .description-assurance,
  .shop-trust-grid,
  .footer-feature-strip,
  .testimonial-stats {
    display: flex;
    gap: 0px;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }

  .description-assurance>div,
  .shop-trust-grid>div,
  .footer-feature-strip>div,
  .testimonial-stats>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: calc((100% / 2) - 10px);
  }

  .description-assurance>div:nth-child(2n + 1),
  .shop-trust-grid>div:nth-child(2n + 1),
  .footer-feature-strip>div:nth-child(2n + 1),
  .testimonial-stats>div:nth-child(2n + 1) {
    border-right: 1px solid rgba(180, 180, 180, .35) !important;
  }

  .description-assurance>div:nth-child(2n + 3),
  .shop-trust-grid>div:nth-child(2n + 3),
  .footer-feature-strip>div:nth-child(2n + 3),
  .testimonial-stats>div:nth-child(2n + 3) {
    border-bottom: 0px;
  }

  .shop-trust-grid>div {
    padding: 10px 10px !important;
  }

  .description-assurance i,
  .shop-trust-grid i,
  .footer-feature-strip i {
    margin-bottom: 10px;
  }

  .benefit p,
  .footer-feature-strip span {
    min-height: 35px;
  }

  .bundle-banner {
    background-size: auto 220px !important;
    background-position: left top !important;
  }


  .shop-hero-features>div,
  .testimonial-stats>div,
  .footer-feature-strip>div,
  .shop-trust-grid>div,
  .product-benefit-strip>div,
  .description-assurance>div {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(180, 180, 180, .35);
  }

  .hero-features .col-6:last-child .hero-feature,
  .footer-feature-strip>div:last-child,
  .shop-trust-grid>div:last-child,
  .product-benefit-strip>div:last-child,
  .description-assurance>div:last-child {
    border-bottom: 0;
  }

  .category-card {
    min-height: 180px;
  }

  .category-card>img,
  .category-card>img.category-art,
  .wide-card>img.syringe-art {
    width: min(145px, 100%);
    height: 118px;
  }

  .testimonial-carousel {
    padding: 0;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

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

  .footer-brand-block {
    grid-column: auto;
  }

  .footer-category-block {
    grid-column: auto;
  }

  .footer-category-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
  }

  .footer-bottom,
  .shop-toolbar,
  .recommend-head,
  .cart-panel-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .footer-bottom .payment-badges {
    align-self: stretch;
    justify-content: center;
  }

  .payment-badges {
    flex-direction: row;
    align-items: center;
  }

  .payment-badges span.payment-image {
    width: clamp(82px, 28vw, 108px);
    height: clamp(32px, 11vw, 42px);
  }

  .shop-sidebar {
    grid-template-columns: 1fr;
  }

  .filter-block {
    border-right: 0;
  }

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

  .shop-product-card.product-card {
    min-height: 286px;
  }

  .shop-product-card.product-card img {
    width: 112px;
    height: 130px;
  }

  .bundle-banner {
    padding: 184px 20px 28px;
    background-size: auto 205px;
  }

  .shop-newsletter .newsletter {
    height: auto;
    flex-direction: column;
  }

  .shop-newsletter .newsletter input,
  .shop-newsletter .newsletter button {
    width: 100%;
    min-height: 52px;
    border-radius: 6px;
  }

  .search-box,
  .cart-drawer {
    width: min(100vw, 420px);
    padding: 20px;
  }

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

  .cart-product-cell {
    grid-column: 1 / -1;
  }

  .checkout-step-head {
    grid-template-columns: auto 1fr;
  }

  .checkout-step-head p {
    grid-column: 2;
  }

  .checkout-fields,
  .product-actions,
  .product-assurance,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .postcode-actions {
    grid-template-columns: 1fr;
  }

  .checkout-fields .wide,
  .checkout-fields .span-2 {
    grid-column: auto;
  }

  .checkout-option,
  .payment-option {
    align-items: flex-start;
    flex-direction: column;
  }

  .success-card,
  .checkout-summary,
  .cart-items-panel,
  .order-summary,
  .product-info-grid,
  .reviews-panel,
  .usage-panel,
  .description-assurance,
  .benefits-tab-grid,
  .dosage-tab-grid,
  .ingredients-tab-grid,
  .reviews-tab-content,
  .faq-tab-grid {
    padding: 20px;
  }

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

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

  .product-thumbs button {
    width: 100%;
    height: 76px;
  }

  .product-main-image {
    min-height: 360px;
  }

  .product-main-image>img {
    max-height: 320px;
  }

  .product-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin: 12px;
    padding: 8px;
    overflow: visible;
    background: #f4f4f4;
    border: 1px solid #e4e4e4;
    border-bottom: 1px solid #e4e4e4;
    border-radius: 8px;
  }

  .product-tabs a {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    padding: 10px 8px;
    color: #171717;
    font-size: .68rem;
    line-height: 1.2;
    background: var(--color-white);
    border: 1px solid #e1e1e1;
    border-radius: 6px;
  }

  .product-tabs a.active {
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-color: rgba(245, 168, 23, .8);
    box-shadow: 0 8px 18px rgba(245, 168, 23, .18);
  }

  .product-tabs a.active::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .footer-bottom span {
    text-align: center;
  }

  .brand {
    width: 210px;
    height: 70px;
  }

  .navbar {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .hero {
    min-height: 570px;
  }

  .hero-content {
    padding-top: 55px;
  }

  .shop-hero-inner {
    min-height: 470px;
  }

  .cart-hero,
  .checkout-hero,
  .search-hero {
    min-height: 330px;
    padding: 42px 0 36px;
  }

  .success-hero {
    min-height: 350px;
  }

  .section-heading h2,
  .why-intro h2,
  .testimonial-heading h2,
  .testimonial-stats strong {
    font-size: 2rem;
  }

  .product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 10px;
    padding: 7px;
  }

  .shop-grid,
  .recommended-grid,
  .related-grid {
    gap: 12px;
  }

  .bundle-banner {
    padding: 162px 16px 24px;
    background-size: auto 182px;
    background-position: 44% top;
  }

  .bundle-banner h2 {
    font-size: 2rem;
  }

  .bundle-banner p:not(.eyebrow) {
    font-size: .88rem;
  }

  .cart-item {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .cart-item button {
    grid-column: 2;
    justify-self: start;
  }

  .checkout-summary-items article {
    grid-template-columns: 58px minmax(0, 1fr);
  }

  .checkout-summary-items b {
    grid-column: 2;
    text-align: left;
  }

  .order-detail-list>div,
  .product-specs div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .order-detail-list dd,
  .product-specs dd {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .container {
    padding-right: 14px;
    padding-left: 14px;
  }

  .hero h1,
  .shop-hero h1,
  .cart-hero h1,
  .checkout-hero h1,
  .search-hero h1,
  .success-hero h1 {
    font-size: clamp(2.25rem, 14vw, 3rem);
  }

  .hero-copy,
  .shop-hero-copy p:last-child,
  .cart-hero p,
  .search-hero-copy>p:not(.eyebrow),
  .success-hero p {
    font-size: .86rem;
  }

  .shop-grid,
  .recommended-grid,
  .related-grid {
    grid-template-columns: 1fr 1fr;
  }

  .shop-product-card.product-card img,
  .recommended-grid .shop-product-card.product-card img {
    width: 132px;
    height: 146px;
  }

  .bundle-banner {
    padding: 142px 14px 22px;
    background-size: auto 164px;
  }

  .bundle-banner .btn-gold {
    width: 100%;
    min-width: 0;
  }

  .footer-bottom .payment-badges {
    gap: 10px;
  }

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

  .payment-badges span.payment-image {
    width: min(44vw, 104px);
    height: 38px;
  }

  .product-tabs {
    gap: 7px;
    margin: 8px;
    padding: 6px;
  }

  .product-tabs a {
    min-height: 40px;
    padding: 9px 6px;
    font-size: .64rem;
  }

  .footer-feature-strip,
  .testimonial-stats,
  .success-card,
  .checkout-summary,
  .cart-items-panel,
  .order-summary,
  .product-info-grid,
  .reviews-panel,
  .usage-panel,
  .description-assurance,
  .benefits-tab-grid,
  .dosage-tab-grid,
  .ingredients-tab-grid,
  .reviews-tab-content,
  .faq-tab-grid {
    padding: 18px;
  }

  .product-main-image {
    min-height: 310px;
  }

  .product-main-image>img {
    max-height: 270px;
  }
}

/* Premium shared header */
.site-header {
  background: linear-gradient(180deg, rgba(5, 5, 5, .92), rgba(5, 5, 5, .78));
  border-bottom: 1px solid rgba(245, 168, 23, .18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .24);
  backdrop-filter: blur(14px);
}

.site-header::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245, 168, 23, .78), transparent);
  opacity: .78;
  pointer-events: none;
}

.site-header.is-scrolled,
.site-header.menu-open,
.shop-page .site-header,
.cart-page .site-header,
.checkout-page .site-header,
.search-page .site-header,
.order-success-page .site-header,
.product-detail-page .site-header {
  background: black;
  /* background: linear-gradient(180deg, rgba(3, 3, 3, .98), rgba(3, 3, 3, .92));
  border-bottom-color: rgba(245, 168, 23, .24);
  box-shadow: 0 18px 42px rgba(0, 0, 0, .34);
  backdrop-filter: blur(16px); */
}

.site-header .navbar {
  min-height: 86px;
}

.site-header .container {
  position: relative;
}

.site-header .brand {
  /* width: auto; */
  width: 170px;
  height: auto;
  padding: 4px 0;
  transition: transform .25s ease, filter .25s ease;
}

.site-header .brand:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 18px rgba(245, 168, 23, .18));
}

.site-header .navbar-nav {
  align-items: center;
  padding: 5px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.site-header .navbar .nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 86px;
  padding: 10px 16px !important;
  color: rgba(255, 255, 255, .86);
  font-size: .78rem;
  line-height: 1;
  text-align: center;
  border-radius: 999px;
  transition: color .22s ease, background .22s ease, transform .22s ease;
}

.site-header .navbar .nav-link i {
  color: var(--color-primary);
  font-size: .82rem;
  transition: color .22s ease, transform .22s ease;
}

.site-header .navbar .nav-link::after {
  display: none;
}

.site-header .navbar .nav-link:hover,
.site-header .navbar .nav-link.active {
  color: var(--color-black);
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
  transform: translateY(-1px);
}

.site-header .navbar .nav-link:hover i,
.site-header .navbar .nav-link.active i {
  color: var(--color-black);
  transform: translateY(-1px);
}

.site-header .nav-actions {
  padding: 5px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px;
}

.site-header .icon-btn {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  padding: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1rem;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 50%;
}

.site-header .icon-btn:hover {
  color: var(--color-black);
  background: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 10px 22px rgba(245, 168, 23, .22);
}

.site-header .cart-btn span {
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border: 2px solid #050505;
}

.site-header .navbar-toggler {
  width: 44px;
  height: 44px;
  padding: 0;
  background: rgba(245, 168, 23, .1);
  border: 1px solid rgba(245, 168, 23, .38) !important;
  border-radius: 50%;
}

.site-header .navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(245, 168, 23, .18);
}

.header-mobile-actions {
  gap: 7px;
  margin-left: auto;
  margin-right: 9px;
}

.site-header .header-mobile-actions .icon-btn {
  width: 40px;
  height: 40px;
}

@media (max-width: 1199.98px) {
  .site-header .navbar .nav-link {
    min-width: 78px;
    padding-right: 12px !important;
    padding-left: 12px !important;
    gap: 6px;
    font-size: .72rem;
  }

  .site-header .navbar .nav-link i {
    font-size: .76rem;
  }
}

@media (max-width: 991.98px) {
  .site-header .navbar {
    min-height: 74px;
  }

  .site-header .brand {
    width: 112px;
    height: 54px;
  }

  .site-header .navbar-collapse {
    position: absolute;
    top: calc(100% + 8px);
    /* right: 12px;
    left: 12px; */
    right: 0px;
    left: 0px;
    z-index: 1050;
    width: auto;
    margin-top: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(14, 14, 14, .98), rgba(3, 3, 3, .98));
    border: 1px solid rgba(245, 168, 23, .16);
    /* border-radius: 12px; */
    box-shadow: 0 18px 38px rgba(0, 0, 0, .38);
  }

  .site-header .navbar-collapse.collapsing {
    position: absolute;
    overflow: hidden;
  }

  .site-header .navbar-nav {
    align-items: stretch;
    gap: 8px !important;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-header .navbar .nav-link {
    justify-content: flex-start;
    width: 100%;
    min-width: 0;
    padding: 14px 16px !important;
    text-align: left;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
  }

  .site-header .navbar .nav-link i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    background: rgba(245, 168, 23, .1);
    border: 1px solid rgba(245, 168, 23, .22);
    border-radius: 50%;
  }

  .site-header .navbar .nav-link:hover i,
  .site-header .navbar .nav-link.active i {
    background: rgba(0, 0, 0, .12);
    border-color: rgba(0, 0, 0, .18);
  }

  .site-header .nav-actions {
    justify-content: flex-start;
    width: 100%;
    margin-top: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .site-header .icon-btn {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px) {
  .site-header .brand {
    width: auto;
    height: 80px;
  }

  .site-header .navbar {
    min-height: 66px;
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .site-header .navbar-collapse {
    padding: 12px;
  }
}

/* Mobile full-width safety */
main,
.site-header,
.site-footer,
main section {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 767.98px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    position: relative;
  }

  .site-header,
  main,
  .hero,
  .shop-hero,
  .cart-hero,
  .checkout-hero,
  .search-hero,
  .success-hero,
  .categories,
  .why-section,
  .bestsellers,
  .testimonials,
  .shop-catalog,
  .cart-main,
  .checkout-main,
  .search-results-page,
  .success-main,
  .product-detail-main,
  .site-footer,
  .shop-newsletter,
  .shop-trust {
    right: auto;
    left: auto;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-left: 0;
  }

  .site-header {
    right: 0;
    left: 0;
    width: auto;
  }

  .container,
  .container-fluid {
    width: 100%;
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .row {
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }

  .row>* {
    min-width: 0;
  }
}

/* Mobile search overlay */
@media (max-width: 767.98px) {
  .search-panel {
    display: block;
    padding: 72px 12px 14px;
    overflow-y: auto;
    background: rgba(0, 0, 0, .9);
  }

  .search-close {
    top: 14px;
    right: 14px;
  }

  .search-box {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 18px;
    border-top-width: 3px;
    border-radius: 10px;
    box-shadow: 0 18px 48px rgba(0, 0, 0, .35);
  }

  .search-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 54px;
    gap: 8px;
    align-items: stretch;
  }

  .search-form input {
    width: 100%;
    min-height: 54px;
    padding: 0 14px;
    font-size: .95rem;
    border-radius: 7px;
  }

  .search-form button {
    width: 54px;
    min-width: 54px;
    min-height: 54px;
    border-radius: 7px;
  }

  .search-results {
    max-height: calc(100vh - 236px);
    margin-top: 14px;
    padding-right: 2px;
    overflow-y: auto;
  }

  .search-result {
    gap: 12px;
    padding: 11px;
    border-radius: 9px;
  }

  .search-result img {
    width: 44px;
    min-width: 44px;
    height: 52px;
  }

  .search-result strong {
    font-size: .92rem;
    line-height: 1.2;
  }

  .search-result small {
    margin-top: 3px;
    font-size: .72rem;
    line-height: 1.25;
  }

  .search-result button {
    min-width: 38px;
    width: 38px;
    height: 38px;
    font-size: .9rem;
  }
}

@media (max-width: 420px) {
  .search-panel {
    padding-right: 10px;
    padding-left: 10px;
  }

  .search-box {
    padding: 16px;
  }

  .search-form {
    grid-template-columns: minmax(0, 1fr) 50px;
  }

  .search-form input,
  .search-form button {
    min-height: 50px;
  }

  .search-form button {
    width: 50px;
    min-width: 50px;
  }

  .search-results {
    max-height: calc(100vh - 222px);
  }
}

/* Product detail interactions */
.product-detail-page .product-thumbs button,
.product-detail-page .product-main-image,
.product-detail-page .product-actions .btn,
.product-detail-page .cart-stepper button,
.product-detail-page .lab-report button,
.product-detail-page .related-card button,
.product-detail-page .product-benefit-strip>div,
.product-detail-page .description-assurance>div,
.product-detail-page .benefit-list>div,
.product-detail-page .dosage-steps>div,
.product-detail-page .ingredient-certifications>div,
.product-detail-page .review-card,
.product-detail-page .faq-list details,
.product-detail-page .shop-trust-grid>div {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease, color .28s ease, opacity .28s ease;
}

.product-detail-page .product-thumbs button,
.product-detail-page .product-main-image,
.product-detail-page .lab-report button,
.product-detail-page .related-card,
.product-detail-page .product-benefit-strip>div,
.product-detail-page .description-assurance>div,
.product-detail-page .benefit-list>div,
.product-detail-page .dosage-steps>div,
.product-detail-page .ingredient-certifications>div,
.product-detail-page .review-card,
.product-detail-page .faq-list summary,
.product-detail-page .shop-trust-grid>div {
  cursor: pointer;
}

.product-detail-page .product-thumbs button:hover,
.product-detail-page .product-thumbs button:focus-visible {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--color-primary);
  box-shadow: 0 14px 28px rgba(245, 168, 23, .18);
  outline: 0;
}

.product-detail-page .product-thumbs button.active {
  box-shadow: 0 16px 34px rgba(245, 168, 23, .22);
}

.product-detail-page .product-main-image {
  transform: none;
}

@media (hover: hover) and (pointer: fine) {
  .product-detail-page .product-main-image {
    cursor: crosshair;
  }
}

.product-zoom-lens {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  background-repeat: no-repeat;
  border: 2px solid rgba(245, 168, 23, .72);
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .42);
  pointer-events: none;
}

.product-main-image .product-image-expand {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 6;
  width: 42px;
  height: 42px;
  display: inline-grid;
  padding: 0;
  place-items: center;
  color: #171717;
  background: rgba(255, 255, 255, .92);
  border: 1px solid rgba(0, 0, 0, .12);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, .2);
}

.product-main-image .product-image-expand:hover {
  color: #090909;
  background: var(--color-primary);
}

.product-detail-page .product-main-image>img,
.product-detail-page .related-card img {
  transition: none;
}

.product-detail-page .product-main-image.is-swapping>img {
  animation: none;
}

.product-detail-page .product-actions .btn:hover,
.product-detail-page .lab-report button:hover,
.product-detail-page .related-card button:hover,
.product-detail-page .cart-stepper button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(245, 168, 23, .22);
}

.product-detail-page .product-actions .btn:active,
.product-detail-page .lab-report button:active,
.product-detail-page .related-card button:active,
.product-detail-page .cart-stepper button:active {
  transform: translateY(0) scale(.96);
}

.testimonial-stats>div:hover i,
.product-benefit-strip>div:hover i,
.description-assurance>div:hover i,
.benefit-list>div:hover i,
.dosage-steps>div:hover i,
.ingredient-certifications>div:hover i,
.shop-trust-grid>div:hover i {
  animation: detailIconPop .55s ease;
}

.product-detail-page .related-card {
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.product-detail-page .related-card:hover {
  transform: translateY(-7px);
  border-color: rgba(245, 168, 23, .62);
  background: linear-gradient(145deg, rgba(245, 168, 23, .14), rgba(255, 255, 255, .05));
  box-shadow: 0 22px 42px rgba(0, 0, 0, .24);
}

.product-detail-page .related-card:hover img {
  animation: detailProductFloat .85s ease;
}

.product-detail-page .faq-list details[open] {
  border-color: rgba(245, 168, 23, .44);
  box-shadow: 0 12px 26px rgba(245, 168, 23, .12);
}

.product-detail-page .is-tapped {
  animation: detailTapPulse .5s ease;
}

.product-detail-page .product-tabs a {
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}

.product-detail-page .product-tabs a:hover,
.product-detail-page .product-tabs a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245, 168, 23, .16);
}

@keyframes detailImageShine {
  0% {
    opacity: 0;
    transform: translateX(-70%);
  }

  35% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateX(70%);
  }
}

@keyframes detailImageSwap {
  0% {
    opacity: .35;
    transform: translateY(16px) scale(.94);
  }

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

@keyframes detailIconPop {

  0%,
  100% {
    transform: scale(1);
  }

  45% {
    transform: scale(1.18) rotate(-8deg);
  }
}

@keyframes detailProductFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes detailTapPulse {

  0%,
  100% {
    transform: translateY(-5px) scale(1);
  }

  45% {
    transform: translateY(-5px) scale(1.025);
  }
}

@media (prefers-reduced-motion: reduce) {

  .product-detail-page .product-main-image:hover::after,
  .product-detail-page .product-main-image.is-swapping>img,
  .product-detail-page .product-benefit-strip>div:hover i,
  .product-detail-page .description-assurance>div:hover i,
  .product-detail-page .benefit-list>div:hover i,
  .product-detail-page .dosage-steps>div:hover i,
  .product-detail-page .ingredient-certifications>div:hover i,
  .product-detail-page .shop-trust-grid>div:hover i,
  .product-detail-page .related-card:hover img,
  .product-detail-page .is-tapped {
    animation: none;
  }
}

/* Site-wide CTA polish */
button,
.btn,
.category-card,
.product-card,
.shop-product-card,
.related-card {
  cursor: pointer;
}

.btn,
button:not(.navbar-toggler):not(.panel-close):not(.slider-arrow):not(.testimonial-nav) {
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease, background .24s ease, color .24s ease, filter .24s ease;
}

.btn:hover,
button:not(.navbar-toggler):not(.panel-close):not(.slider-arrow):not(.testimonial-nav):hover {
  transform: translateY(-2px);
}

.btn:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.btn:active,
button:not(.navbar-toggler):not(.panel-close):not(.slider-arrow):not(.testimonial-nav):active {
  transform: translateY(0) scale(.97);
}

.btn-gold,
.buy-now-btn {
  position: relative;
  overflow: hidden;
}

.btn-gold::after,
.buy-now-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 8%, rgba(255, 255, 255, .4) 48%, transparent 62%);
  opacity: 0;
  transform: translateX(-110%);
  transition: transform .65s ease, opacity .28s ease;
}

.btn-gold:hover::after,
.buy-now-btn:hover::after {
  opacity: 1;
  transform: translateX(110%);
}

.btn-gold>*,
.buy-now-btn>* {
  position: relative;
  z-index: 1;
}

.product-card,
.shop-product-card,
.category-card,
.related-card {
  outline: 0;
}

.product-card:hover,
.shop-product-card:hover,
.category-card:hover,
.related-card:hover {
  border-color: rgba(245, 168, 23, .55);
}

.product-card:focus-visible,
.shop-product-card:focus-visible,
.category-card:focus-visible,
.related-card:focus-visible {
  box-shadow: 0 0 0 3px rgba(245, 168, 23, .24), var(--shadow);
}

/* Cleaner hero headline animation */
.hero h1 {
  max-width: 570px;
  white-space: normal;
  letter-spacing: -.035em;
}

.hero h1 span {
  display: block;
  margin-left: 0;
}

.hero::after {
  inset: 0;
  background: linear-gradient(105deg, transparent 0 43%, rgba(245, 168, 23, .08) 46%, rgba(255, 193, 77, .7) 48%, rgba(245, 168, 23, .1) 50%, transparent 54% 100%);
  transform: translate3d(-70%, 0, 0) skewX(-10deg);
  animation: heroRibbonSweep 7.2s cubic-bezier(.6, 0, .24, 1) infinite;
}

.hero .reveal-up {
  animation-duration: .78s;
}

.hero h1.reveal-up {
  animation-name: heroTitleSlide;
}

@keyframes heroRibbonSweep {

  0%,
  34% {
    opacity: 0;
    transform: translate3d(-70%, 0, 0) skewX(-10deg);
  }

  48% {
    opacity: .9;
  }

  74%,
  100% {
    opacity: 0;
    transform: translate3d(70%, 0, 0) skewX(-10deg);
  }
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(-18px, 22px, 0) scale(.98);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes successHeroBackdropDrift {
  from {
    background-position: right 35% bottom;
  }

  to {
    background-position: right 43% bottom;
  }
}

@media (max-width: 767.98px) {
  .hero h1 {
    font-size: clamp(2.25rem, 10.4vw, 3.8rem);
    line-height: .9;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 2.05rem;
  }
}

/* Make all inner page heroes (checkout, cart, search, success) match the design of shop-hero */
.checkout-hero,
.cart-hero,
.search-hero {
  color: var(--color-white) !important;
  background: var(--color-black) url("../images/hero-performance.png") right 35% bottom/auto 120% no-repeat !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
  overflow: hidden !important;
  position: relative !important;
  text-align: left !important;
}

.checkout-hero::before,
.cart-hero::before,
.search-hero::before,
.success-hero::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .88) 36%, rgba(0, 0, 0, .22) 68%, rgba(0, 0, 0, .4) 100%) !important;
  z-index: 0 !important;
}

.checkout-hero::after,
.cart-hero::after,
.search-hero::after,
.success-hero::after {
  content: "" !important;
  position: absolute !important;
  inset: -18% !important;
  background: linear-gradient(105deg, transparent 0 43%, rgba(245, 168, 23, .08) 46%, rgba(255, 193, 77, .7) 48%, rgba(245, 168, 23, .1) 50%, transparent 54% 100%);
  /* background: linear-gradient(128deg, transparent 34%, rgba(245, 168, 23, .1) 37%, rgba(245, 168, 23, .45) 38%, transparent 39%, transparent 46%, rgba(245, 168, 23, .32) 48%, transparent 50%, transparent 58%, rgba(245, 168, 23, .28) 60%, transparent 62%) !important; */
  pointer-events: none !important;
  z-index: 0 !important;
}

.checkout-hero .container,
.cart-hero .container,
.search-hero .container,
.success-hero .container {
  position: relative !important;
  z-index: 1 !important;
}

.checkout-hero-copy,
.cart-hero-copy,
.search-hero-copy {
  max-width: 520px !important;
  padding: 0px 0 78px !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  text-align: left !important;
  margin: 0 !important;
}

/* Titles matching the shop hero headline style */
.checkout-hero-copy h1,
.cart-hero-copy h1,
.search-hero-copy h1,
.success-hero-copy h1 {
  margin: 0 !important;
  font-family: var(--font-display) !important;
  font-size: clamp(3rem, 6vw, 4.8rem) !important;
  font-weight: 800 !important;
  line-height: .96 !important;
  text-transform: uppercase !important;
  text-align: left !important;
  color: var(--color-white) !important;
}

.checkout-hero-copy h1 span,
.cart-hero-copy h1 span,
.search-hero-copy h1 span,
.success-hero-copy h1 span {
  color: var(--color-primary) !important;
}

.success-hero {
  position: relative !important;
  /* background: var(--color-black) url("../images/hero-performance.png") right 35% bottom/auto 120% no-repeat !important; */
  animation: successHeroBackdropDrift 18s ease-in-out infinite alternate !important;
}

.success-hero::before {
  inset: 0 !important;
  background: radial-gradient(circle at 76% 48%, rgba(245, 168, 23, .12), transparent 25%), linear-gradient(90deg, rgba(0, 0, 0, .98) 0%, rgba(0, 0, 0, .9) 30%, rgba(0, 0, 0, .28) 64%, rgba(0, 0, 0, .05)) !important;
  animation: heroVignetteBreath 7s ease-in-out infinite alternate !important;
}

.success-hero::after {
  inset: 0;
  background: linear-gradient(105deg, transparent 0 43%, rgba(245, 168, 23, .08) 46%, rgba(255, 193, 77, .7) 48%, rgba(245, 168, 23, .1) 50%, transparent 54% 100%);
  transform: translate3d(-70%, 0, 0) skewX(-10deg);
  animation: heroRibbonSweep 7.2s cubic-bezier(.6, 0, .24, 1) infinite;
}

.success-hero-copy {
  animation: heroContentReveal .95s cubic-bezier(.18, .82, .24, 1) both !important;
}

.success-hero-copy h1 span {
  animation: heroGoldFocus 2.4s ease both .55s !important;
}

/* Breadcrumbs aligned left with custom colors */
.cart-breadcrumb,
.search-breadcrumb,
.product-breadcrumb {
  display: flex !important;
  justify-content: flex-start !important;
  align-items: center !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  margin-bottom: 20px !important;
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.cart-breadcrumb a,
.search-breadcrumb a,
.product-breadcrumb a {
  color: rgba(255, 255, 255, 0.8) !important;
}

.cart-breadcrumb i,
.search-breadcrumb i {
  color: rgba(255, 255, 255, 0.4) !important;
  margin: 0 10px !important;
  font-size: 0.75rem !important;
}

/* Search form in search hero */
.search-hero-form {
  margin: 24px 0 0 0 !important;
  max-width: 495px !important;
  width: 100% !important;
}

/* Success check icon spacing */
.success-check {
  margin-bottom: 18px !important;
}

/* Make header sticky and solid dark on all inner pages, not fixed */
body:not(.home-page) .site-header {
  position: sticky !important;
  top: 0 !important;
  background: #030303 !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .28) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .1) !important;
}

.success-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.track-order-form {
  display: grid !important;
  /* grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto; */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 0.6fr;
  gap: 0px;
}

.track-order-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid #dedede;
  border-radius: 6px;
  background: #fff;
  color: #111;
  padding: 12px 14px;
  font: inherit;
}

.track-alert {
  margin-bottom: 22px;
  border: 1px solid #c6f0d0;
  border-radius: 8px;
  background: #f0fff4;
  color: #166534;
  padding: 14px 16px;
  font-weight: 700;
}

.track-empty-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 18px;
  align-items: stretch;
  padding: 28px;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 138, 0, .08), rgba(17, 17, 17, .02) 46%, rgba(255, 255, 255, 1)),
    #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .055);
}

.track-empty-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 260px;
}

.track-empty-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-bottom: 14px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 138, 0, .28);
  border-radius: 999px;
  background: #fff8ef;
  color: #b85f00;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.track-empty-copy h2 {
  margin: 0 0 12px;
  color: #111;
  font-size: clamp(1.55rem, 2.8vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.track-empty-copy p {
  max-width: 680px;
  margin: 0;
  color: #3f3f3f;
  font-size: .96rem;
  line-height: 1.7;
}

.track-empty-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid #171717;
  border-radius: 6px;
  background: #fff;
  color: #111;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: #111;
  color: #fff;
}

.track-empty-steps {
  display: grid;
  gap: 12px;
}

.track-empty-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  column-gap: 13px;
  align-content: center;
  padding: 16px;
  border: 1px solid #ececec;
  border-radius: 8px;
  background: rgba(255, 255, 255, .86);
}

.track-empty-steps i {
  grid-row: span 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #fff5e8;
  color: #ff8a00;
}

.track-empty-steps strong {
  color: #111;
  font-size: .88rem;
  font-weight: 900;
}

.track-empty-steps span {
  margin-top: 4px;
  color: #555;
  font-size: .8rem;
  line-height: 1.45;
}

@media (max-width: 767.98px) {
  .track-order-form {
    grid-template-columns: 1fr;
  }

  .track-empty-panel {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .track-empty-copy {
    min-height: auto;
  }

  .track-empty-actions .btn {
    width: 100%;
  }

  .success-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Final responsive safeguards */
img,
svg,
video,
canvas {
  max-width: 100%;
}

main,
main section,
main .container,
main [class*="-grid"],
main [class*="-layout"],
main [class*="-panel"],
main [class*="-copy"] {
  min-width: 0;
}

input,
select,
textarea,
button {
  max-width: 100%;
}

.ingredient-table,
.cart-items-panel,
.checkout-summary,
.order-detail-card {
  max-width: 100%;
}

@media (max-width: 991.98px) {
  .hero-feature-slider {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-features {
    display: flex;
    max-width: none;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
  }

  .hero-features::-webkit-scrollbar {
    display: none;
  }

  .hero-feature-slide {
    flex: 0 0 50%;
    min-width: 0;
    scroll-snap-align: start;
  }

  .hero-feature {
    min-height: 74px;
    margin: 18px 0 10px;
  }

  .hero-feature-pagination {
    display: flex;
    justify-content: center;
    gap: 7px;
    min-height: 18px;
    padding-bottom: 7px;
  }

  .hero-feature-pagination button {
    width: 7px;
    height: 7px;
    padding: 0;
    background: rgba(255, 255, 255, .38);
    border: 0;
    border-radius: 50%;
    box-shadow: none;
  }

  .hero-feature-pagination button:hover {
    transform: none;
  }

  .hero-feature-pagination button.is-active {
    width: 20px;
    background: var(--color-primary);
    border-radius: 999px;
  }

  .peptide-calculator-hero {
    grid-template-columns: minmax(0, 1fr) 220px;
    gap: 28px;
    padding: 30px;
  }

  .peptide-calculator-product {
    justify-self: end;
    width: 220px;
    height: 190px;
  }

  .peptide-calculator-shell,
  .product-detail-layout,
  .cart-layout,
  .checkout-layout,
  .success-grid,
  .track-empty-panel {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-main-image {
    width: 100%;
    max-width: none;
  }

  .order-summary,
  .checkout-summary {
    width: 100%;
    max-width: none;
  }

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

@media (max-width: 767.98px) {
  .hero-feature-slide {
    flex-basis: 50%;
  }

  .hero-feature {
    justify-content: center;
    margin-right: 0;
    margin-left: 0;
    padding: 0 14px;
    border-right: 0;
  }

  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    padding-right: 16px;
    padding-left: 16px;
  }

  .section-space,
  .shop-main,
  .cart-main,
  .checkout-main,
  .success-main,
  .track-order-main {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .peptide-calculator-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
    padding: 22px;
  }

  .peptide-calculator-hero::after {
    top: auto;
    right: -100px;
    bottom: -150px;
  }

  .peptide-calculator-hero h1 {
    font-size: clamp(1.9rem, 10vw, 2.7rem);
    overflow-wrap: anywhere;
  }

  .peptide-calculator-product {
    justify-self: center;
    width: min(100%, 280px);
    height: 210px;
  }

  .peptide-calculator-main,
  .peptide-calculator-result,
  .peptide-field {
    padding: 18px;
  }

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

  .peptide-syringe-option {
    min-width: 0;
    min-height: 94px;
    padding: 10px 6px;
  }

  .peptide-syringe-meta,
  .peptide-fields-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .peptide-syringe-meta div {
    border-right: 0;
    border-bottom: 1px solid #e1e1e1;
  }

  .peptide-syringe-meta div:last-child {
    border-bottom: 0;
  }

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

  .shop-product-card,
  .related-card,
  .recommended-grid .shop-product-card {
    min-width: 0;
  }

  .shop-product-card h3,
  .related-card h3,
  .recommended-grid h3 {
    overflow-wrap: anywhere;
  }

  .cart-row,
  .checkout-summary-items article,
  .search-result {
    min-width: 0;
  }

  .cart-product-cell,
  .checkout-summary-items article>div,
  .search-result>div {
    min-width: 0;
  }

  .cart-product-cell strong,
  .checkout-summary-items strong,
  .search-result strong {
    overflow-wrap: anywhere;
  }

  .checkout-option,
  .payment-option,
  .mini-payments,
  .crypto-marks {
    flex-wrap: wrap;
  }

  .success-side,
  .success-actions,
  .track-empty-actions {
    grid-template-columns: minmax(0, 1fr);
  }

  .success-hero h1,
  .checkout-hero h1,
  .cart-hero h1,
  .search-hero h1 {
    white-space: normal !important;
    overflow-wrap: anywhere;
  }

  .product-gallery {
    min-width: 0;
  }

  .product-main-image {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .product-main-image>img {
    width: 100%;
    height: 100%;
    max-height: none;
  }

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

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

  .ingredient-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .track-order-form {
    gap: 10px;
  }

  .track-order-form .btn,
  .track-empty-actions .btn,
  .success-actions .btn {
    width: 100%;
  }
}

@media (max-width: 575.98px) {
  .site-header .navbar {
    min-height: 76px;
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .site-header .brand {
    width: 150px;
    height: 65px;
  }

  .site-header .brand img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .site-header .navbar-toggler {
    flex: 0 0 auto;
  }

  .header-mobile-actions {
    gap: 5px;
    margin-right: 7px;
  }

  .site-header .header-mobile-actions .icon-btn {
    width: 38px;
    height: 38px;
  }

  .site-header .navbar-collapse {
    width: 100%;
    max-height: calc(100dvh - 76px);
    padding: 12px 0 16px;
    overflow-y: auto;
  }

  .site-header .nav-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .shop-hero,
  .cart-hero,
  .checkout-hero,
  .search-hero,
  .success-hero {
    min-height: auto;
  }

  .shop-hero-inner,
  .hero-content {
    min-height: 520px;
  }

  .cart-hero,
  .checkout-hero,
  .search-hero,
  .success-hero {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .checkout-hero-copy,
  .cart-hero-copy,
  .search-hero-copy {
    padding-bottom: 34px !important;
  }

  .success-card,
  .cart-items-panel,
  .order-summary,
  .checkout-step,
  .checkout-summary,
  .track-empty-panel {
    padding: 18px;
  }

  .peptide-choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .peptide-choice {
    width: 100%;
  }
}

@media (max-width: 374.98px) {
  .container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .shop-grid,
  .recommended-grid,
  .related-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .peptide-syringe-options {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .footer-category-links,
  .product-tabs {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .cart-stepper {
    justify-self: start;
  }
}

/* Keep desktop heroes unchanged; match compact home sizing on smaller screens */
@media (max-width: 991.98px) {

  .shop-hero,
  .cart-hero,
  .checkout-hero,
  .search-hero,
  .success-hero {
    height: 640px;
    min-height: 640px;
  }
}

@media (max-width: 767.98px) {

  .shop-hero,
  .cart-hero,
  .checkout-hero,
  .search-hero,
  .success-hero {
    height: 520px;
    min-height: 520px;
  }

  .shop-hero-copy,
  .cart-hero-copy,
  .checkout-hero-copy,
  .search-hero-copy,
  .success-hero-copy {
    align-items: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
    text-align: center !important;
  }

  .shop-hero-copy h1,
  .cart-hero-copy h1,
  .checkout-hero-copy h1,
  .search-hero-copy h1,
  .success-hero-copy h1,
  .shop-hero-copy p,
  .cart-hero-copy p,
  .checkout-hero-copy p,
  .search-hero-copy p,
  .success-hero-copy p {
    text-align: center !important;
  }

  .cart-breadcrumb,
  .checkout-breadcrumb,
  .search-breadcrumb {
    justify-content: center !important;
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .search-hero-form {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .shop-hero {
    height: auto;
    min-height: 0;
  }

  .shop-hero-inner {
    min-height: 0;
    padding: 42px 0 16px;
    justify-content: flex-start;
    gap: 30px;
  }

  .shop-hero-copy {
    width: 100%;
    max-width: 360px;
    padding-top: 0;
  }

  .shop-hero h1 {
    font-size: clamp(2.5rem, 12vw, 3.2rem);
  }

  .shop-hero-copy p:last-child {
    margin-top: 13px;
    font-size: .9rem;
    line-height: 1.55;
  }

  .shop-hero .hero-feature-slider {
    width: 100%;
    margin-top: 0;
  }

  .shop-hero .hero-feature {
    min-height: 64px;
    margin-top: 12px;
    margin-bottom: 6px;
  }

  .cart-hero,
  .checkout-hero,
  .search-hero,
  .success-hero {
    height: auto;
    min-height: 0;
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .cart-hero .container,
  .checkout-hero .container,
  .search-hero .container,
  .success-hero .container {
    min-height: 0;
  }

  .cart-hero-copy,
  .checkout-hero-copy,
  .search-hero-copy,
  .success-hero-copy {
    width: 100%;
    max-width: 390px !important;
    min-height: 0;
    margin: 0 auto !important;
    padding: 0 !important;
  }

  .cart-hero-copy h1,
  .checkout-hero-copy h1,
  .search-hero-copy h1,
  .success-hero-copy h1 {
    font-size: clamp(2.5rem, 12vw, 3.2rem) !important;
  }

  .cart-hero-copy>p,
  .checkout-hero-copy>p,
  .search-hero-copy>p,
  .success-hero-copy>p {
    margin-top: 13px;
    font-size: .9rem;
    line-height: 1.55;
  }

  .cart-breadcrumb,
  .checkout-breadcrumb,
  .search-breadcrumb {
    margin-bottom: 16px !important;
  }

  .success-check {
    width: 58px;
    height: 58px;
    margin-bottom: 14px !important;
    font-size: 1.75rem;
  }

  .search-hero-form {
    margin-top: 18px !important;
  }

  .track-order-page .search-hero {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
    padding-top: 38px;
    padding-bottom: 42px;
  }

  .track-order-page .search-hero-copy {
    max-width: 420px !important;
  }

  .track-order-page .track-order-form {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 10px;
    height: auto !important;
    min-height: 0;
    overflow: visible;
    color: inherit;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
  }

  .track-order-page .track-order-form input,
  .track-order-page .track-order-form .btn {
    width: 100%;
    height: 52px;
    min-height: 52px;
  }

  .track-order-page .track-order-form input {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 7px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
  }

  .track-order-page .track-order-form .btn {
    display: inline-flex;
    grid-template-columns: none;
    justify-content: center;
    color: var(--color-black);
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    border-radius: 7px;
  }

  .home-page .hero-content .min-vh-hero {
    justify-content: center;
    text-align: center;
  }

  .home-page .hero-content .min-vh-hero>div {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }

  .home-page .hero .eyebrow,
  .home-page .hero h1,
  .home-page .hero-copy {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }

  .home-page .hero-content .d-flex {
    justify-content: center;
  }

  .section-heading,
  .why-intro,
  .testimonial-heading,
  .recommend-head,
  .shop-newsletter-copy {
    width: 100%;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
  }

  .section-heading>div,
  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading p,
  .why-intro .eyebrow,
  .why-intro h2,
  .why-intro p,
  .testimonial-heading .eyebrow,
  .testimonial-heading h2,
  .testimonial-heading p,
  .recommend-head .eyebrow,
  .recommend-head h2,
  .shop-newsletter-copy .eyebrow,
  .shop-newsletter-copy h2,
  .shop-newsletter-copy p {
    margin-right: auto;
    margin-left: auto;
    text-align: center !important;
  }

  .section-heading .btn,
  .section-heading>a,
  .recommend-head>a {
    align-self: center;
  }
}

/* Consistent full-frame product imagery across every product card */
.product-card>img,
.shop-product-card.product-card>img,
.recommended-grid .shop-product-card.product-card>img,
.related-card>img {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  margin-right: 0;
  margin-left: 0;
  object-fit: cover;
}

@media (max-width: 767.98px) {

  .product-card>img,
  .shop-product-card.product-card>img,
  .recommended-grid .shop-product-card.product-card>img,
  .related-card>img {
    width: 100%;
    height: auto;
  }

  .shop-trust {
    padding: 24px 0;
  }

  .shop-trust-grid {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .shop-trust-grid>div {
    display: flex;
    width: auto;
    min-width: 0;
    min-height: 150px;
    align-items: center;
    justify-content: center;
    padding: 18px 12px !important;
    text-align: center;
    border-right: 0 !important;
    border-bottom: 0 !important;
  }

  .shop-trust-grid>div:nth-child(odd) {
    border-right: 1px solid rgba(180, 180, 180, .35) !important;
  }

  .shop-trust-grid>div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(180, 180, 180, .35) !important;
  }

  .shop-trust-grid i {
    flex: 0 0 auto;
    margin-bottom: 10px;
  }

  .shop-trust-grid strong {
    display: flex;
    min-height: 40px;
    align-items: center;
    justify-content: center;
    line-height: 1.25;
  }

  .shop-trust-grid span {
    min-height: 36px;
    margin-top: 5px;
    line-height: 1.4;
  }

  .cart-drawer .cart-item {
    position: relative;
    grid-template-columns: 58px minmax(0, 1fr);
    padding-right: 52px;
  }

  .cart-drawer .cart-item .remove-item {
    position: absolute;
    top: 50%;
    right: 13px;
    display: grid;
    width: 34px;
    height: 34px;
    grid-column: auto;
    place-items: center;
    justify-self: auto;
    color: #777;
    background: #f5f5f5;
    border-radius: 50%;
    transform: translateY(-50%);
  }

  .cart-drawer .cart-item .remove-item:hover,
  .cart-drawer .cart-item .remove-item:active {
    color: #a71919;
    background: #fff0f0;
    transform: translateY(-50%);
  }
}

/* Header search overlay: contained product scrolling */
.search-panel {
  overflow: hidden;
}

.search-panel .search-box {
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 140px);
  overflow: hidden;
}

.search-panel .search-box>.eyebrow,
.search-panel .search-form {
  flex: 0 0 auto;
}

.search-panel .search-results {
  min-height: 0;
  max-height: none;
  padding-right: 8px;
  padding-bottom: 4px;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #d5a028 #f0f1f3;
}

.search-panel .search-results::-webkit-scrollbar {
  width: 7px;
}

.search-panel .search-results::-webkit-scrollbar-track {
  background: #f0f1f3;
  border-radius: 20px;
}

.search-panel .search-results::-webkit-scrollbar-thumb {
  background: #d5a028;
  border-radius: 20px;
}

@media (max-width: 767.98px) {
  .search-panel {
    overflow: hidden;
  }

  .search-panel .search-box {
    max-height: calc(100dvh - 86px);
  }

  .search-panel .search-results {
    max-height: none;
  }
}

/* Reliable sticky frontend header for mobile and tablet */
@media (max-width: 991.98px) {

  html,
  body {
    overflow-x: clip !important;
    overflow-y: visible;
  }

  body .site-header,
  body.home-page .site-header,
  body:not(.home-page) .site-header {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    right: auto !important;
    left: auto !important;
    z-index: 1090 !important;
    width: 100% !important;
    margin: 0 !important;
    background: #030303 !important;
    border-bottom: 1px solid rgba(245, 168, 23, .3) !important;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .3) !important;
  }

  body .site-header .navbar-collapse {
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

/* Featured product hero slider */
.home-page .hero {
  background-color: var(--color-black);
  background-image: url("../images/banner/hero-banner.png");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat
}

.home-hero-slider,
.home-hero-track {
  position: relative;
  min-height: 600px
}

.home-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: 50px;
  visibility: hidden;
  opacity: 0;
  transform: translate3d(0, 36px, 0);
  transition: opacity .7s ease, transform .85s cubic-bezier(.16, 1, .3, 1), visibility .7s;
  will-change: opacity, transform
}

.home-hero-slide-bg {
  position: absolute;
  z-index: -1;
  inset: -100px calc(50% - 50vw);
  /* background-image: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .35)), var(--hero-slide-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat */
}

.home-hero-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: translate3d(0, 0, 0)
}

.home-hero-copy {
  position: relative;
  z-index: 3
}

.home-hero-copy h1 {
  max-width: 570px;
  font-size: clamp(2.75rem, 4vw, 4.25rem);
  line-height: .92;
  overflow-wrap: anywhere
}

.home-hero-copy .hero-copy {
  max-width: 430px;
  font-size: .95rem;
  line-height: 1.6
}

.home-hero-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 18px
}

.home-hero-price strong {
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 2.25rem;
  font-weight: 900
}

.home-hero-price span {
  padding-left: 15px;
  color: #bbb;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  border-left: 1px solid #555
}

.home-hero-product {
  position: relative;
  display: grid;
  height: 520px;
  place-items: center;
  isolation: isolate;
  transform: translateX(110px)
}

.home-hero-product img {
  position: relative;
  z-index: 2;
  max-width: 92%;
  max-height: 480px;
  object-fit: contain;
  filter: drop-shadow(0 32px 28px rgba(0, 0, 0, .65));
  transition: transform .45s ease
}

.home-hero-product:hover img {
  transform: translateY(-9px) scale(1.025)
}

.home-hero-glow {
  position: absolute;
  width: min(420px, 80%);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(245, 168, 23, .28), rgba(245, 168, 23, .07) 40%, transparent 68%);
  border: 1px solid rgba(245, 168, 23, .18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(245, 168, 23, .08)
}

.home-hero-stock {
  position: absolute;
  z-index: 4;
  top: 70px;
  right: 20px;
  padding: 9px 14px;
  color: #fff;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: #b3261e;
  border-radius: 999px
}

.hero-notify-btn {
  color: #111;
  background: #fff;
  border: 1px solid #fff
}

.hero-notify-btn:hover {
  color: #111;
  background: var(--color-primary);
  border-color: var(--color-primary)
}

.home-hero-arrow {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, .45);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  backdrop-filter: blur(8px);
  transform: translateY(-50%);
  transition: .25s
}

.home-hero-arrow:hover,
.home-hero-arrow:focus-visible {
  color: #111;
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-50%) !important
}

.home-hero-arrow i {
  margin: 0;
  transform: none !important;
  transition: none
}

.home-hero-prev {
  left: -58px
}

.home-hero-next {
  right: -58px
}

.home-hero-pagination {
  position: absolute;
  z-index: 5;
  right: 0;
  bottom: 20px;
  display: flex;
  gap: 8px
}

.home-hero-pagination button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, .4);
  border: 0;
  border-radius: 20px;
  transition: .25s
}

.home-hero-pagination button.is-active {
  width: 28px;
  background: var(--color-primary)
}

@media(max-width:1199.98px) {
  .home-hero-product { transform: translateX(50px) }
  .home-hero-prev {
    left: 8px
  }

  .home-hero-next {
    right: 8px
  }

  .home-hero-slide {
    padding: 0 60px
  }

  .home-hero-product img {
    max-width: 84%
  }
}

@media(max-width:767.98px) {
  .home-hero-product { transform: none }
  .home-page .hero {
    height: auto;
    min-height: 760px
  }

  .home-page .hero-content {
    padding-top: 45px
  }

  .home-hero-slider,
  .home-hero-track {
    min-height: 650px
  }

  .home-hero-slide {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 8px;
    padding: 20px 16px 60px;
    text-align: center
  }

  .home-hero-copy {
    order: 2
  }

  .home-hero-copy h1 {
    margin: auto;
    font-size: clamp(2.15rem, 10vw, 3rem);
    line-height: .95
  }

  .home-hero-copy .hero-copy {
    max-width: 320px;
    margin: 12px auto 0;
    font-size: .85rem;
    line-height: 1.55
  }

  .home-hero-price {
    justify-content: center
  }

  .home-hero-copy .d-flex {
    justify-content: center;
    margin-top: 16px !important
  }

  .home-hero-copy .btn {
    padding: 12px 18px
  }

  .home-hero-product {
    order: 1;
    height: 245px
  }

  .home-hero-product img {
    max-width: 72%;
    max-height: 235px
  }

  .home-hero-glow {
    width: 230px
  }

  .home-hero-stock {
    top: 12px;
    right: 12px
  }

  .home-hero-arrow {
    top: 205px;
    width: 38px;
    height: 38px
  }

  .home-hero-prev {
    left: 0
  }

  .home-hero-next {
    right: 0
  }

  .home-hero-pagination {
    right: 50%;
    bottom: 18px;
    transform: translateX(50%)
  }

  .home-page .hero-feature-slider {
    margin-top: 0
  }
}

@media(prefers-reduced-motion:reduce) {

  .home-hero-slide,
  .home-hero-product img {
    transition: none
  }
}
/* Final responsive hero composition */
.home-hero-slide-bg {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, .88), rgba(0, 0, 0, .28)), var(--hero-slide-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media (max-width: 767.98px) {
  .home-page .hero {
    min-height: 800px;
    background-position: 72% center;
  }

  .home-hero-slider,
  .home-hero-track {
    min-height: 700px;
  }

  .home-hero-slide {
    align-content: center;
    grid-template-rows: auto 245px;
    gap: 20px;
    padding-top: 34px;
    padding-bottom: 55px;
  }

  .home-hero-slide-bg {
    inset: -80px calc(50% - 50vw);
    background-image: linear-gradient(180deg, rgba(0, 0, 0, .72), rgba(0, 0, 0, .34) 48%, rgba(0, 0, 0, .68)), var(--hero-slide-bg);
    background-position: 72% center;
  }

  .home-hero-copy {
    order: 1;
  }

  .home-hero-product {
    order: 2;
    height: 245px;
    transform: none;
  }

  .home-hero-arrow {
    top: auto;
    bottom: 125px;
    transform: none;
  }

  .home-hero-arrow:hover,
  .home-hero-arrow:focus-visible {
    transform: none !important;
  }
}
/* Keep the mobile delivery slider independent from the product hero */
@media (max-width: 767.98px) {
  .home-page .hero-content {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding-bottom: 14px;
  }

  .home-page .home-hero-slider {
    flex: 0 0 auto;
    width: 100%;
    min-height: 700px;
  }

  .home-page .hero-feature-slider {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
    width: 100%;
    margin-top: 8px;
    overflow: hidden;
    background: rgba(0, 0, 0, .42);
    border-top: 1px solid rgba(255, 255, 255, .22);
  }

  .home-page .hero-features {
    width: 100%;
  }

  .home-page .hero-feature-slide {
    flex: 0 0 50%;
  }

  .home-page .hero-feature {
    min-height: 66px;
    margin: 10px 0 4px;
    padding: 0 10px;
  }

  .home-page .hero-feature-pagination {
    position: static;
    min-height: 20px;
    padding: 3px 0 8px;
    transform: none;
  }

  .home-page .home-hero-pagination {
    bottom: 6px;
  }
}
/* Desktop hero and delivery slider flow */
@media (min-width: 992px) {
  .home-page .hero {
    height: auto;
    min-height: 800px;
  }

  .home-page .hero-content {
    display: flex;
    flex-direction: column;
    min-height: 800px;
    padding-bottom: 18px;
  }

  .home-page .home-hero-slider {
    flex: 0 0 600px;
    width: 100%;
    min-height: 600px;
  }

  .home-page .hero-feature-slider {
    position: relative;
    z-index: 10;
    flex: 0 0 auto;
    width: 100%;
    max-width: 650px;
    margin-top: 0;
  }

  .home-page .hero-features {
    width: 100%;
  }

  .home-page .hero-feature-pagination {
    position: static;
  }
}