:root {
  --theme-bg: #f3f4f6;
  --theme-surface: #ffffff;
  --theme-surface-soft: #e5e7eb;
  --theme-surface-warm: #f8f9fa;
  --theme-border: #d1d5db;
  --theme-text: #27272a;
  --theme-text-soft: #6b7280;
  --theme-primary: #5d9200;
  --theme-neon: #b6ff14;
  --theme-primary-strong: #3f4248;
  --theme-primary-soft: #eceff2;
  --theme-accent: #747982;
  --theme-accent-strong: #555a62;
  --theme-accent-soft: #eceff2;
  --theme-gold: #b6ff14;
  --theme-white: #ffffff;
  --theme-gradient: linear-gradient(
    135deg,
    #34363a 0%,
    #52565d 76%,
    #5d9200 100%
  );
  --theme-gradient-soft: linear-gradient(
    135deg,
    #ffffff 0%,
    #f3f4f6 52%,
    #e4e7eb 100%
  );
  --theme-radius-xs: 0;
  --theme-radius-sm: 2px;
  --theme-radius-md: 3px;
  --theme-radius-lg: 4px;
  --theme-radius-xl: 5px;
  --theme-shadow-sm: 0 12px 30px rgba(39, 39, 42, 0.07);
  --theme-shadow-md: 0 22px 56px rgba(39, 39, 42, 0.11);
  --theme-shadow-lg: 0 34px 86px rgba(39, 39, 42, 0.16);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Archivo", "Manrope", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--theme-bg);
  color: var(--theme-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}
a {
  color: inherit;
  transition:
    color 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.22s ease;
}
a:hover {
  color: var(--theme-primary);
  text-decoration: none;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 22px;
  padding-right: 22px;
}

.headersec {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(243, 244, 246, 0.86);
  border-bottom: 1px solid rgba(209, 213, 219, 0.72);
  box-shadow: 0 12px 34px rgba(39, 39, 42, 0.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo img {
  display: block;
  max-width: 188px;
  max-height: 58px;
  object-fit: contain;
}
.cmenu {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.cmenu ul {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cmenu ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 2px;
  color: var(--theme-text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
}
.cmenu ul li.active > a,
.cmenu ul li a:hover {
  background: var(--theme-accent-soft);
  color: var(--theme-primary-strong);
}
.site-nav-cart__link {
  gap: 10px;
  background: var(--theme-white);
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-sm);
}
.site-nav-cart__label {
  white-space: nowrap;
}
.cart-icon {
  position: relative;
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-gradient);
  color: var(--theme-white);
  box-shadow: 0 10px 24px rgba(39, 39, 42, 0.24);
}
.cart-icon::before {
  content: "\f07a";
  font-family: FontAwesome;
  font-size: 17px;
  line-height: 1;
}
.cart-icon strong {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  border-radius: 2px;
  background: var(--theme-white);
  border: 1px solid var(--theme-border);
  color: var(--theme-primary);
  font-size: 11px;
  font-weight: 900;
}
.rmenubar,
.carticon-mb {
  display: none;
}

.site-label,
.health-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 16px;
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}
.site-label::before,
.health-eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--theme-primary), var(--theme-gold));
}
h1,
h2,
h3,
h4 {
  color: var(--theme-text);
  line-height: 1.05;
  margin: 0;
}
h1,
h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}
p {
  color: var(--theme-text-soft);
}

.health-btn,
.s2btn2,
.site-product-btn,
.commonbtn,
.cont-shop,
.prod-clearcart,
.site-shop-card__btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 28px;
  border: 0;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none !important;
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
}
.health-btn:hover,
.s2btn2:hover,
.site-product-btn:hover,
.commonbtn:hover,
.cont-shop:hover,
.prod-clearcart:hover {
  transform: translateY(-2px);
}
.health-btn--primary,
.s2btn2,
.site-product-btn,
.commonbtn,
.prod-clearcart {
  background: var(--theme-neon);
  color: #1d211a !important;
  box-shadow: 0 18px 38px rgba(39, 39, 42, 0.24);
}
.health-btn--secondary,
.cont-shop {
  background: rgba(255, 255, 255, 0.82);
  color: var(--theme-primary-strong) !important;
  border: 1px solid rgba(209, 213, 219, 0.92);
  box-shadow: 0 14px 30px rgba(39, 39, 42, 0.1);
}

.show {
  display: inline-flex !important;
}
.hide {
  display: none !important;
}
.pad-rand {
  padding: 0 !important;
}
.hulk_app {
  width: 100%;
  max-width: 100%;
  margin: 22px 0 20px;
  display: block;
}
.hulk_app .s1-p3 {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 16px 18px 16px 50px !important;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--theme-text-soft);
  font-size: 14px;
  line-height: 1.65;
  box-shadow: 0 10px 24px rgba(39, 39, 42, 0.07);
  transition:
    border-color 0.22s ease,
    background-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
  overflow-wrap: break-word;
  word-break: break-word;
}
.hulk_app .s1-p3 + .s1-p3 {
  margin-top: 12px;
}
.hulk_app .s1-p3 input[type="checkbox"] {
  position: absolute;
  top: 19px;
  left: 18px;
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--theme-primary);
  cursor: pointer;
}
.hulk_app .s1-p3 a {
  color: var(--theme-primary-strong);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.hulk_app .s1-p3 a:hover {
  color: var(--theme-primary);
}
.hulk_app .s1-p3.block-error {
  border-color: #b44d4d;
  background: rgba(180, 77, 77, 0.08);
  box-shadow:
    0 0 0 4px rgba(180, 77, 77, 0.13),
    0 12px 28px rgba(39, 39, 42, 0.1);
  animation: healthShake 0.42s ease;
}
.validation_error.error_span {
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #8f3434;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.site-product-btn .crt-loader svg,
.commonbtn .crt-loader svg {
  width: 18px;
  height: 18px;
  display: block;
  animation: healthSpin 1s linear infinite;
}

.site-home,
.site-home * {
  box-sizing: border-box;
}
.site-home {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f4f6 0%, #ffffff 48%, #f3f4f6 100%);
  color: var(--theme-text);
}
.site-home .container,
.site-products .container {
  max-width: 1320px;
}
.health-hero {
  position: relative;
  min-height: 790px;
  padding: 126px 0 128px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(182, 255, 20, 0.08) 0 1px, transparent 1px 100%),
    linear-gradient(135deg, #f3f4f6 0%, #ffffff 72%);
  background-size: 28px 100%, 100% 100%;
}
.health-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(75, 79, 85, 0.1) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 58%, rgba(255, 255, 255, 0.64) 58% 60%, transparent 60% 100%);
  background-size: 100% 28px, 100% 100%;
  pointer-events: none;
}
.health-hero::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 53.5%;
  background:
    linear-gradient(135deg, rgba(182, 255, 20, 0.05), transparent 36%),
    linear-gradient(145deg, #34363a 0%, #4b4f55 64%, #62666d 100%);
  border-radius: 0;
  box-shadow:
    inset 0 -8px 0 var(--theme-neon),
    28px 0 70px rgba(39, 39, 42, 0.1);
  pointer-events: none;
}
.health-hero::after {
  content: "";
  position: absolute;
  right: -54px;
  top: 118px;
  width: 280px;
  height: 12px;
  border-radius: 0;
  background: var(--theme-neon);
  box-shadow: 0 28px 0 rgba(182, 255, 20, 0.24);
  transform: rotate(-8deg);
  pointer-events: none;
}
.health-hero .container {
  position: relative;
  z-index: 3;
}
.health-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(500px, 1.14fr);
  gap: 64px;
  align-items: center;
}
.health-hero__content {
  max-width: 610px;
  color: #ffffff;
}
.health-hero__content .health-eyebrow {
  color: var(--theme-neon);
}
.health-hero__content .health-eyebrow::before {
  background: var(--theme-neon);
}
.health-hero__content h1 {
  max-width: 700px;
  margin: 0 0 24px;
  color: #ffffff;
  font-size: clamp(48px, 5.25vw, 80px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.055em;
  text-transform: none;
}
.health-hero__content p {
  max-width: 570px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.78;
}
.health-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}
.health-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 610px;
  gap: 10px;
}
.health-metric {
  min-height: 106px;
  padding: 18px;
  border: 1px solid rgba(182, 255, 20, 0.19);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.health-metric strong,
.health-metric span {
  display: block;
}
.health-metric strong {
  margin-bottom: 8px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.health-metric span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 11px;
  line-height: 1.45;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.health-hero__visual {
  position: relative;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.health-photo-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 660px);
  aspect-ratio: 1.22;
  padding: 14px;
  border: 1px solid rgba(209, 213, 219, 0.94);
  border-radius: 2px;
  background: #ffffff;
  box-shadow:
    18px 18px 0 rgba(182, 255, 20, 0.78),
    0 38px 88px rgba(39, 39, 42, 0.2);
  transform: translateX(18px);
}
.health-photo-card::before {
  content: "";
  position: absolute;
  inset: 28px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 2px;
  pointer-events: none;
}
.health-photo-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent 48%, rgba(39, 39, 42, 0.28) 100%);
  pointer-events: none;
}
.health-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 2px;
}
.health-photo-card__label {
  position: absolute;
  left: 36px;
  bottom: 34px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 14px;
  border: 1px solid var(--theme-neon);
  border-radius: 3px;
  background: var(--theme-neon);
  color: #1d211a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.health-panel {
  position: absolute;
  z-index: 5;
  width: 250px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 22px 50px rgba(39, 39, 42, 0.16);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.health-panel--top {
  top: 74px;
  left: -8px;
}
.health-panel--bottom {
  left: -18px;
  bottom: 54px;
  border-color: #34363a;
  background: #34363a;
}
.health-panel span {
  display: block;
  margin-bottom: 7px;
  color: var(--theme-accent);
  font-size: 11px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.health-panel--bottom span {
  color: var(--theme-neon);
}
.health-panel--bottom strong {
  color: #ffffff;
}
.health-panel strong {
  display: block;
  color: var(--theme-text);
  font-size: 18px;
  line-height: 1.3;
  font-weight: 900;
}
.health-hero__ticker {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 5vw, 72px);
  padding: 14px 22px;
  background: var(--theme-neon);
  color: #1d211a;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.health-hero__ticker i {
  width: 5px;
  height: 5px;
  background: #1d211a;
  transform: rotate(45deg);
}
.health-bridge {
  position: relative;
  z-index: 3;
  padding: 0 0 108px;
  margin-top: -42px;
  background: linear-gradient(180deg, transparent 0%, #f3f4f6 15%, #ffffff 100%);
}
.health-bridge::before,
.health-bridge::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.health-bridge::before {
  left: -130px;
  top: 130px;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(116, 121, 130, 0.13), transparent 68%);
}
.health-bridge::after {
  right: -160px;
  bottom: 180px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(116, 121, 130, 0.12), transparent 68%);
}
.health-bridge .container {
  position: relative;
  z-index: 2;
}
.health-bridge__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 42px;
  padding: 46px;
  overflow: hidden;
  border: 1px solid rgba(209, 213, 219, 0.9);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--theme-shadow-lg);
}
.health-bridge__shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(75, 79, 85, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}
.health-bridge__shell::after {
  content: "";
  position: absolute;
  right: -72px;
  top: -86px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(116, 121, 130, 0.17), transparent 68%);
  pointer-events: none;
}
.health-bridge__intro,
.health-bridge__cards,
.health-routine__content,
.health-routine__media {
  position: relative;
  z-index: 2;
}
.health-bridge__intro {
  align-self: center;
  padding-right: 6px;
}
.health-bridge__intro h2,
.health-routine__content h2 {
  max-width: 620px;
  color: var(--theme-primary-strong);
  font-size: clamp(38px, 4.2vw, 62px);
  line-height: 0.99;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.health-bridge__intro p,
.health-routine__content p {
  max-width: 540px;
  margin: 18px 0 0;
  color: var(--theme-text-soft);
  font-size: 16px;
  line-height: 1.8;
}
.health-bridge__cards {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.health-mini-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: linear-gradient(160deg, #ffffff 0%, #f3f4f6 100%);
  box-shadow: var(--theme-shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.health-mini-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--theme-shadow-md);
}
.health-mini-card span {
  color: var(--theme-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.health-mini-card h3 {
  margin-top: 13px;
  color: var(--theme-primary-strong);
  font-size: 27px;
  line-height: 1.04;
}
.health-mini-card p {
  margin: 9px 0 0;
  color: var(--theme-text-soft);
  font-size: 13px;
  line-height: 1.62;
}
.health-mini-card--active {
  grid-row: 1 / 3;
  min-height: 350px;
  padding: 30px;
  background:
    radial-gradient(circle at 82% 12%, rgba(156, 163, 175, 0.28), transparent 30%),
    var(--theme-gradient);
  border-color: transparent;
}
.health-mini-card--active h3 {
  max-width: 250px;
  font-size: 35px;
}
.health-mini-card--active span,
.health-mini-card--active h3,
.health-mini-card--active p {
  color: #ffffff;
}
.health-routine {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(390px, 0.86fr);
  gap: 0;
  align-items: center;
  margin-top: 54px;
  padding: 0;
  overflow: visible;
}
.health-routine__media {
  min-height: 540px;
}
.health-routine__media::before,
.health-routine__media::after {
  content: "";
  position: absolute;
  border-radius: 2px;
  pointer-events: none;
}
.health-routine__media::before {
  left: -22px;
  top: -22px;
  width: 156px;
  height: 156px;
  background: rgba(116, 121, 130, 0.16);
}
.health-routine__media::after {
  right: -20px;
  bottom: -22px;
  width: 210px;
  height: 210px;
  background: rgba(116, 121, 130, 0.13);
}
.health-routine__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--theme-shadow-md);
}
.health-routine__caption {
  position: absolute;
  z-index: 4;
  left: 30px;
  bottom: 30px;
  width: min(310px, calc(100% - 60px));
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 2px;
  background: rgba(39, 39, 42, 0.44);
  backdrop-filter: blur(12px);
}
.health-routine__caption span,
.health-routine__caption strong {
  display: block;
  color: #ffffff;
}
.health-routine__caption span {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.health-routine__caption strong {
  margin-top: 6px;
  font-size: 19px;
  line-height: 1.25;
}
.health-routine__content {
  z-index: 4;
  margin-left: -74px;
  padding: 48px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--theme-shadow-lg);
  backdrop-filter: blur(15px);
}
.health-routine__orb {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
}
.health-routine__orb--one {
  left: 20px;
  top: 22px;
  width: 34px;
  height: 34px;
  background: var(--theme-accent);
}
.health-routine__orb--two {
  right: 36px;
  bottom: 42px;
  width: 18px;
  height: 18px;
  background: var(--theme-primary);
}
.health-routine__list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.health-routine__list div {
  position: relative;
  padding: 15px 16px 15px 52px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: rgba(248, 249, 250, 0.72);
}
.health-routine__list div::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 20px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--theme-accent);
  box-shadow: 0 0 0 6px rgba(116, 121, 130, 0.12);
}
.health-routine__list strong,
.health-routine__list span {
  display: block;
}
.health-routine__list strong {
  color: var(--theme-text);
  font-size: 14px;
  font-weight: 900;
}
.health-routine__list span {
  margin-top: 3px;
  color: var(--theme-text-soft);
  font-size: 13px;
  line-height: 1.52;
}
.site-products {
  position: relative;
  padding: 96px 0 108px;
  overflow: hidden;
  background: #f3f4f6;
}
.site-products::before,
.site-products::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.site-products::before {
  left: -150px;
  top: -170px;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(116, 121, 130, 0.14), transparent 68%);
}
.site-products::after {
  right: -190px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  background: radial-gradient(circle, rgba(182, 255, 20, 0.13), transparent 68%);
}
.site-products .container {
  position: relative;
  z-index: 2;
}
.site-products__top {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.48fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 38px;
}
.site-products__intro h2 {
  margin: 0;
  color: var(--theme-primary-strong);
  font-size: clamp(40px, 4vw, 62px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}
.site-products__text {
  margin: 0;
  color: var(--theme-text-soft);
  font-size: 16px;
  line-height: 1.8;
}
.site-products .prod-box {
  position: relative;
  width: 100%;
  padding: 0 58px;
}
.site-products .s2list {
  margin: 0;
}
.site-products .slick-list {
  margin: 0 -14px;
  overflow: hidden;
}
.site-products .slick-track {
  display: flex;
}
.site-products .slick-slide {
  height: inherit;
}
.site-products .slick-slide > div {
  height: 100%;
}
.site-products .s2box {
  height: 100%;
  padding: 0 14px;
}
.site-products .s2list-bx {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 330px;
  padding: 32px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, var(--theme-primary-soft) 100%);
  border: 1px solid var(--theme-border);
  border-bottom: 0;
  border-radius: 4px 4px 0 0;
}
.site-products .s2list-bx::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -44px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(116, 121, 130, 0.08);
}
.site-products .s2prd2 {
  position: relative;
  z-index: 2;
  display: block;
  max-width: 100%;
  max-height: 250px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  border-radius: 2px;
  transition: transform 0.28s ease;
}
.site-products .s2box:hover .s2prd2 {
  transform: translateY(-6px) scale(1.03);
}
.site-products .s2list-text {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--theme-border);
  border-top: 0;
  border-radius: 0 0 4px 4px;
  box-shadow: var(--theme-shadow-sm);
  text-align: center;
}
.site-products .s2prd-hding2 {
  min-height: 58px;
  margin: 0 0 14px;
  color: var(--theme-text);
  font-size: 21px;
  line-height: 1.38;
  font-weight: 900;
}
.site-products .s2prd-prc2 {
  margin: 0 0 18px;
  color: var(--theme-primary);
  font-size: 29px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.035em;
}
.site-products .s2btn2 {
  width: 100%;
  min-height: 54px;
  border-radius: 2px;
  background: var(--theme-neon);
  border: 1px solid var(--theme-neon);
  color: #1d211a;
  box-shadow: 0 16px 30px rgba(39, 39, 42, 0.18);
}
.site-products .s2btn2:hover {
  background: #34363a;
  border-color: #34363a;
  color: var(--theme-neon);
  box-shadow: 0 18px 34px rgba(116, 121, 130, 0.24);
}
.site-products .s2btn2 span {
  color: inherit;
}
.site-products .s2list .slick-prev,
.site-products .s2list .slick-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 3px;
  background: var(--theme-neon);
  color: #1d211a;
  z-index: 20;
  font-size: 0;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(39, 39, 42, 0.18);
  transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
}
.site-products .s2list .slick-prev:hover,
.site-products .s2list .slick-next:hover {
  background: #34363a;
  color: var(--theme-neon);
  transform: translateY(-50%) scale(1.05);
}
.site-products .s2list .slick-prev {
  left: 0;
}
.site-products .s2list .slick-next {
  right: 0;
}
.site-products .s2list .slick-prev:before,
.site-products .s2list .slick-next:before {
  content: "";
}
.site-products .s2list .slick-prev:after,
.site-products .s2list .slick-next:after {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: FontAwesome;
  font-size: 24px;
  line-height: 1;
  transform: translate(-50%, -50%);
}
.site-products .s2list .slick-prev:after {
  content: "\f104";
}
.site-products .s2list .slick-next:after {
  content: "\f105";
}
.site-products .s2list .slick-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.site-shop-main,
.prod-mid-sec,
.site-contact-main,
.site-legal-content,
.site-thankyou-main,
.site-checkout-main {
  position: relative;
  padding: 92px 0;
  background: linear-gradient(180deg, #ffffff, #f3f4f6);
}

.site-shop-page,
.site-product-page,
.site-contact-page,
.site-legal-page,
.site-thankyou-page,
.site-checkout-page {
  background: #f3f4f6;
}
.site-shop-hero,
.site-product-hero,
.site-contact-hero,
.site-legal-hero,
.site-thankyou-hero,
.site-checkout-hero {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  padding: 132px 0 72px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}
.site-shop-hero::after,
.site-product-hero::after,
.site-contact-hero::after,
.site-legal-hero::after,
.site-thankyou-hero::after,
.site-checkout-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(39, 39, 42, 0.08) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.site-shop-hero__content,
.site-product-hero__content,
.site-contact-hero__content,
.site-legal-hero__content,
.site-thankyou-hero__content,
.site-checkout-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.site-shop-hero h1,
.site-product-hero h1,
.site-contact-hero h1,
.site-legal-hero h1,
.site-thankyou-hero h1,
.site-checkout-hero h1 {
  font-size: clamp(52px, 5vw, 76px);
  color: #3f4248;
  text-transform: none;
}
.site-shop-hero p,
.site-product-hero p,
.site-contact-hero p,
.site-thankyou-hero p,
.site-checkout-hero p {
  max-width: 620px;
  margin-top: 16px;
  font-size: 17px;
}
.site-shop-breadcrumb ul,
.site-product-breadcrumb ul,
.site-contact-breadcrumb ul,
.site-legal-breadcrumb ul,
.site-thankyou-breadcrumb ul,
.site-checkout-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.site-shop-breadcrumb li,
.site-product-breadcrumb li,
.site-contact-breadcrumb li,
.site-legal-breadcrumb li,
.site-thankyou-breadcrumb li,
.site-checkout-breadcrumb li {
  color: var(--theme-text-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.site-shop-breadcrumb li + li::before,
.site-product-breadcrumb li + li::before,
.site-contact-breadcrumb li + li::before,
.site-legal-breadcrumb li + li::before,
.site-thankyou-breadcrumb li + li::before,
.site-checkout-breadcrumb li + li::before {
  content: "/";
  margin-right: 10px;
  color: var(--theme-accent);
}
.site-shop-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.site-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.site-shop-card {
  padding: 0;
  border-radius: 2px;
  transition: transform 0.25s ease;
}
.site-shop-card:hover {
  transform: translateY(-5px);
}
.site-shop-card .s2list-bx,
.site-shop-card__image-wrap {
  min-height: 280px;
}
.site-shop-card__btn-wrap {
  margin-top: 18px;
}

.prod-mid-sec {
  padding: 92px 0 108px;
}
.prd-details {
  padding: 34px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--theme-shadow-md);
}
.prod-spec {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.prds-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 34px;
  border-radius: 2px;
  background: radial-gradient(circle at 50% 20%, #fff, #eceff2 50%, #fff 100%);
  border: 1px solid var(--theme-border);
}
.prd-dtl-1 {
  max-width: 440px;
  max-height: 480px;
  object-fit: contain;
}
.prds-right {
  padding: 14px 0;
}
.prd-dtl1 {
  color: var(--theme-text);
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  line-height: 1.05;
}
.pro-dtil-rgt-p2 {
  margin-top: 18px;
  color: var(--theme-text-soft);
  font-size: 18px;
  font-weight: 700;
}
.price {
  color: var(--theme-primary);
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 700;
}
.s1-p2 {
  margin-top: 22px;
  color: var(--theme-text-soft);
  font-size: 16px;
}
.pric-box {
  margin-top: 24px;
}
.choosePackage {
  display: block;
  margin: 20px 0 8px;
  color: var(--theme-text);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.form-select,
.paywhirl-plan select,
.cart_prod_qty select,
select,
input[type="text"],
input[type="email"],
textarea {
  min-height: 52px;
  width: 100%;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: #fff;
  color: var(--theme-text);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  box-shadow: none;
  transition:
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}
.form-select:focus,
.paywhirl-plan select:focus,
select:focus,
input:focus,
textarea:focus {
  border-color: var(--theme-accent);
  box-shadow: 0 0 0 4px rgba(116, 121, 130, 0.14);
}
.paywhirl_app,
.hulk_app {
  margin-top: 22px;
}
.paywhirl-plan-selector {
  padding: 20px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #f3f4f6;
}
.paywhirl-plan-selector legend {
  float: none;
  width: auto;
  margin: 0 0 14px;
  color: var(--theme-primary);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.paywhirl-plan-selector-group {
  margin-top: 12px;
}
.chk-chekout {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-text);
  font-weight: 800;
}
.agreement-group,
.warranty-group,
.cart-terms,
.is_bill {
  padding: 16px 18px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--theme-text-soft);
  font-size: 14px;
}
.site-product-btn {
  margin-top: 24px;
  min-width: 220px;
}

.cart_area,
.prod-top {
  padding: 82px 0 104px;
}
.shipping_heading h3 {
  margin-bottom: 24px;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: 42px;
}
#cartBox,
.frm_con_bgcolr,
.site-legal-shell,
.site-thankyou-shell,
.site-contact-showcase {
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--theme-shadow-md);
}
#cartBox {
  overflow: hidden;
}
.cart_hdr,
.prod_details {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 0.75fr 0.75fr 0.75fr;
  align-items: center;
  gap: 18px;
}
.cart_hdr {
  padding: 18px 64px 18px 28px;
  background: var(--theme-primary-soft);
  color: var(--theme-primary-strong);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prod_details {
  position: relative;
  min-height: 116px;
  padding: 20px 64px 20px 28px;
  border-top: 1px solid var(--theme-border);
  background: #fff;
}
.cart-remv {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 12px !important;
  height: 12px !important;
  object-fit: contain;
  transform: translateY(-50%);
  opacity: 0.72;
}
.prod_name {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}
.prod_name img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: #f3f4f6;
  padding: 8px;
}
.product_name {
  color: var(--theme-text);
  font-weight: 800;
  line-height: 1.35;
}
.cart_prod_prc,
.cart_prc_subtotl,
.cart_prod_qty {
  color: var(--theme-text);
  font-weight: 800;
}
.cart_prod_qty select {
  max-width: 92px;
  min-height: 44px;
  padding: 8px 12px;
}
.cart-totl {
  padding: 26px 28px 30px;
  border-top: 1px solid var(--theme-border);
  background: linear-gradient(180deg, #f3f4f6, #fff);
}
.cart-totl-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--theme-text);
  font-weight: 800;
}
.cart-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.cart-summery {
  margin-left: auto;
  max-width: 430px;
  display: grid;
  gap: 12px;
}
.shp-charge,
.cart-sb-totl,
.total-amt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: #fff;
}
.total-amt {
  background: var(--theme-gradient);
  color: #fff;
  border-color: transparent;
}
.total-amt span {
  color: #fff;
}
.shp-lbl,
.sub-lbl,
.total-lbl {
  font-weight: 900;
}
.shp-prc,
.sub-prc,
.total-prc {
  color: var(--theme-primary);
  font-weight: 900;
}
#emptycartBox {
  margin: 28px 0;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #fff;
}
.frm_con_bgcolr {
  padding: 0;
  overflow: hidden;
}
.frm-container {
  padding: 30px;
  border-bottom: 1px solid var(--theme-border);
}
.frm-container:last-child {
  border-bottom: 0;
}
.label {
  position: relative;
  margin-bottom: 14px;
  color: var(--theme-text);
  font-weight: 800;
}
.label i {
  position: absolute;
  left: 16px;
  top: 17px;
  color: var(--theme-accent);
  z-index: 2;
}
.label i + input,
.label i + select {
  padding-left: 44px;
}
.small-s {
  display: inline-block;
  width: calc(50% - 8px);
  margin-right: 8px;
  vertical-align: top;
}
.cards {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0 18px;
  color: var(--theme-text-soft);
  font-weight: 800;
}
.cards img {
  max-height: 34px;
}
#chekoutbtn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.site-contact-media {
  position: relative;
  min-height: 720px;
  border-radius: 2px;
  overflow: hidden;
}
.site-contact-media > img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.site-contact-panel {
  position: absolute;
  right: 34px;
  top: 28px;
  bottom: 28px;
  width: min(480px, calc(100% - 68px));
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid rgba(209, 213, 219, 0.92);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--theme-shadow-md);
  backdrop-filter: blur(16px);
  overflow: visible;
}
.site-contact-panel__kicker {
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-contact-panel h2 {
  margin-top: 8px;
  font-size: 44px;
}
.site-contact-panel__intro {
  margin: 10px 0 0;
}
.site-contact-panel__list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}
.site-contact-panel__item,
.site-thankyou-support__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 13px 14px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: #fff;
}
.site-contact-panel__icon,
.site-footer__icon,
.site-thankyou-support__icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-accent-soft);
  color: var(--theme-primary);
}
.site-contact-panel__item small,
.site-thankyou-support__item small {
  color: var(--theme-primary);
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-contact-panel__item p,
.site-thankyou-support__item p {
  margin-top: 2px;
  color: var(--theme-text);
  font-weight: 700;
}

.site-legal-shell {
  padding: 28px;
}
.site-legal-topbar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.site-legal-topbar__item {
  padding: 18px;
  border: 1px solid var(--theme-border);
  border-radius: 3px;
  background: #f3f4f6;
}
.site-legal-topbar__item span {
  display: block;
  color: var(--theme-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-legal-topbar__item strong {
  display: block;
  margin-top: 6px;
  color: var(--theme-text);
  word-break: break-word;
}
.site-legal-card {
  padding: 34px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #fff;
}
.site-legal-body,
.trm-bx {
  color: var(--theme-text-soft);
}
.site-legal-body h3,
.site-legal-body strong,
.ingre-heading strong {
  color: var(--theme-primary-strong);
}
.site-legal-body p,
.trm-bx p {
  margin-bottom: 14px;
}
.privacy-list {
  padding-left: 20px;
}
.privacy-list li {
  list-style: disc;
  color: var(--theme-text-soft);
  margin-bottom: 8px;
}
.ingdnts_img {
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #f3f4f6;
  text-align: center;
}
.ingdnts_img img {
  max-height: 520px;
  object-fit: contain;
}

.site-thankyou-shell {
  padding: 34px;
}
.site-thankyou-status {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 28px;
  border-radius: 2px;
  background: var(--theme-gradient-soft);
  border: 1px solid var(--theme-border);
}
.site-thankyou-status__icon {
  width: 70px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--theme-gradient);
  color: #fff;
  font-size: 28px;
  box-shadow: var(--theme-shadow-sm);
}
.site-thankyou-status h2,
.site-thankyou-support h2 {
  font-size: 44px;
}
.site-thankyou-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.site-thankyou-card {
  padding: 26px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #fff;
}
.site-thankyou-card--primary {
  background: var(--theme-gradient);
  color: #fff;
}
.site-thankyou-card--primary * {
  color: #fff;
}
.site-thankyou-card__label {
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-thankyou-card h3,
.site-thankyou-card h4 {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 34px;
}
.site-thankyou-date {
  color: var(--theme-primary);
  font-weight: 900;
}
.site-thankyou-support {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 28px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #f3f4f6;
}
.site-thankyou-support__right {
  display: grid;
  gap: 14px;
}

.site-footer {
  position: relative;
  background: #34363a;
  color: rgba(255, 255, 255, 0.82);
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  right: -180px;
  top: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(116, 121, 130, 0.34),
    transparent 70%
  );
}
.site-footer .container {
  position: relative;
  z-index: 2;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr 1fr;
  gap: 44px;
  padding: 66px 0 44px;
}
.site-footer__logo {
  max-width: 190px;
  max-height: 60px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.site-footer__kicker {
  display: block;
  margin-top: 18px;
  color: #d1d5db;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.site-footer__text {
  max-width: 480px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
}
.site-footer__cards img {
  margin-top: 20px;
  max-width: 230px;
}
.site-footer h4 {
  color: #fff;
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 18px;
}
.site-footer__links li {
  margin-bottom: 10px;
}
.site-footer a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
}
.site-footer__details {
  display: grid;
  gap: 12px;
}
.site-footer__detail-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.site-footer__detail-text {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer__disclaimer {
  padding: 22px 0 38px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.site-footer__disclaimer p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.7;
}
.site-footer__bottom {
  padding: 18px 0;
  background: rgba(0, 0, 0, 0.16);
}
.site-footer__bottom p {
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  font-size: 13px;
}

@keyframes healthDrift {
  0% {
    background-position:
      0 0,
      0 0;
  }
  100% {
    background-position:
      120px 80px,
      0 0;
  }
}
@keyframes healthFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes healthShake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-4px);
  }
  50% {
    transform: translateX(4px);
  }
  75% {
    transform: translateX(-2px);
  }
}
@keyframes healthMorph {
  0%,
  100% {
    border-radius: 2px;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 2px;
    transform: rotate(4deg) scale(1.03);
  }
}
@keyframes healthSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .cmenu ul {
    gap: 2px;
  }
  .cmenu ul li a {
    padding: 10px 9px;
    font-size: 11px;
  }
  .health-hero__grid,
  .health-bridge__shell,
  .health-routine,
  .prod-spec,
  .site-thankyou-support {
    grid-template-columns: 1fr;
  }
  .health-hero {
    padding-top: 132px;
  }
  .health-hero::before {
    width: 100%;
    border-radius: 0;
  }
  .health-hero__visual {
    min-height: 520px;
    justify-content: center;
  }
  .health-photo-card {
    width: min(100%, 700px);
    aspect-ratio: 1.34;
    transform: none;
  }
  .health-panel--bottom {
    left: 4%;
  }
  .health-bridge__cards,
  .site-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .health-mini-card--active {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 220px;
  }
  .health-routine {
    gap: 0;
  }
  .health-routine__content {
    width: calc(100% - 64px);
    margin: -56px auto 0;
  }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 820px) {
  .site-nav-wrap {
    min-height: 76px;
  }
  .rmenubar,
  .carticon-mb {
    display: flex;
    align-items: center;
  }
  .rmenubar a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--theme-accent-soft);
    color: var(--theme-primary);
  }
  .logo img {
    max-width: 160px;
  }
  .cmenu {
    position: fixed;
    inset: 76px 0 auto 0;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: rgba(243, 244, 246, 0.98);
    border-bottom: 1px solid var(--theme-border);
    box-shadow: var(--theme-shadow-md);
    transition: max-height 0.32s ease;
  }
  .cmenu.navopen {
    max-height: calc(100vh - 76px);
  }
  .cmenu ul {
    display: grid;
    gap: 0;
    padding: 14px 22px 22px;
    opacity: 1;
  }
  .cmenu ul li a {
    width: 100%;
    justify-content: space-between;
    min-height: 48px;
  }
  .site-nav-cart {
    display: none;
  }
  .health-hero {
    min-height: auto;
    padding: 112px 0 58px;
  }
  .health-hero__grid {
    gap: 36px;
  }
  .health-hero__content h1 {
    font-size: clamp(46px, 12vw, 64px);
  }
  .health-bridge__cards,
  .site-products__top,
  .site-shop-grid,
  .site-legal-topbar,
  .site-thankyou-grid,
  .site-footer__top {
    grid-template-columns: 1fr;
  }
  .health-hero__visual {
    min-height: 440px;
  }
  .health-photo-card {
    width: min(100%, 620px);
    aspect-ratio: 1.24;
    transform: none;
  }
  .health-panel {
    display: none;
  }
  .health-bridge,
  .site-products,
  .site-shop-main,
  .prod-mid-sec,
  .site-contact-main,
  .site-legal-content,
  .site-thankyou-main,
  .site-checkout-main {
    padding: 62px 0;
  }
  .health-bridge__shell,
  .prd-details,
  .site-legal-shell,
  .site-thankyou-shell {
    padding: 22px;
    border-radius: 2px;
  }
  .health-mini-card--active {
    grid-column: auto;
    min-height: 210px;
  }
  .health-routine__media,
  .prds-left {
    min-height: 400px;
  }
  .health-routine__media img {
    min-height: 400px;
    height: 400px;
  }
  .health-routine__content {
    width: calc(100% - 30px);
    margin-top: -40px;
    padding: 32px;
  }
  .site-products__top {
    display: block;
  }
  .site-products__text {
    margin-top: 14px;
  }
  .site-shop-hero,
  .site-product-hero,
  .site-contact-hero,
  .site-legal-hero,
  .site-thankyou-hero,
  .site-checkout-hero {
    min-height: 330px;
    padding: 112px 0 52px;
  }
  .cart_hdr {
    display: none;
  }
  .prod_details {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 22px 58px 22px 18px;
  }
  .cart_prod_prc::before {
    content: "Price: ";
    color: var(--theme-text-soft);
  }
  .cart_prod_qty::before {
    content: "Quantity: ";
    color: var(--theme-text-soft);
  }
  .cart_prc_subtotl::before {
    content: "Total: ";
    color: var(--theme-text-soft);
  }
  .cart-summery {
    max-width: none;
  }
  .site-contact-media {
    min-height: auto;
  }
  .site-contact-media > img {
    height: 320px;
  }
  .site-contact-panel {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    margin: -40px 16px 18px;
  }
}
@media (max-width: 560px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .health-btn,
  .s2btn2,
  .site-product-btn,
  .commonbtn,
  .cont-shop,
  .prod-clearcart {
    width: 100%;
  }
  .health-hero__actions,
  .cart-links {
    display: grid !important;
    grid-template-columns: 1fr;
  }
  .health-hero::before {
    border-radius: 0;
  }
  .health-hero__ticker {
    gap: 12px;
    padding: 13px 16px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
  .health-hero__ticker i {
    display: none;
  }
  .health-hero__metrics {
    grid-template-columns: 1fr;
  }
  .health-metric {
    min-height: auto;
  }
  .health-photo-card {
    padding: 9px;
    aspect-ratio: 1.05;
  }
  .health-photo-card::before {
    inset: 20px;
  }
  .health-photo-card::after {
    inset: 9px;
  }
  .health-photo-card__label {
    left: 24px;
    bottom: 22px;
  }
  .health-routine__content {
    width: calc(100% - 16px);
    margin-top: -24px;
    padding: 24px;
  }
  .health-routine__caption {
    left: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
  }
  .site-products .prod-box {
    padding: 0 34px;
  }
  .s2list-bx,
  .site-shop-card__image-wrap {
    min-height: 240px;
  }
  .s2prd2 {
    height: 210px;
  }
  .small-s {
    width: 100%;
    margin-right: 0;
  }
  .site-legal-card,
  .frm-container,
  .site-contact-panel {
    padding: 22px;
  }
  .site-shop-hero h1,
  .site-product-hero h1,
  .site-contact-hero h1,
  .site-legal-hero h1,
  .site-thankyou-hero h1,
  .site-checkout-hero h1 {
    font-size: 46px;
  }
}

/* Checkout form refinement */
.page-checkout .site-checkout-main {
  padding: 82px 0 108px;
}

.page-checkout #contents,
.page-checkout .product-page,
.page-checkout #divOrder,
.page-checkout #frmOrder {
  width: 100%;
}

.page-checkout .site-checkout-main .container {
  display: block !important;
}

.page-checkout .frm_con_bgcolr {
  max-width: 1180px;
  margin: 0 auto;
  overflow: visible;
  border-radius: 2px;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(248, 249, 250, 0.95),
      transparent 34%
    ),
    rgba(255, 255, 255, 0.9);
}

.page-checkout .frm-container {
  padding: 34px;
}

.page-checkout .frm-container.step1,
.page-checkout .frm-container.step2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  align-items: start;
}

.page-checkout .frm-container.step1 > .shipping_heading,
.page-checkout .frm-container.step2 > .shipping_heading,
.page-checkout .frm-container.step1 > .clearall,
.page-checkout .frm-container.step2 > .clearall,
.page-checkout .frm-container.step2 > .cards,
.page-checkout .frm-container.step2 > .is_bill,
.page-checkout .frm-container.step2 > .billing-info,
.page-checkout .frm-container.step2 > .cart-terms,
.page-checkout .frm-container.step2 > .trial-cont,
.page-checkout .frm-container.step2 > p.clearall,
.page-checkout .frm-container.step2 > center,
.page-checkout .frm-container.step2 > div[style*="display:none"] {
  grid-column: 1 / -1;
}

.page-checkout .sub_shipping_heading h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
  font-size: clamp(30px, 3vw, 42px);
}

.page-checkout .sub_shipping_heading h3::before {
  content: "";
  width: 11px;
  height: 42px;
  border-radius: 2px;
  background: var(--theme-gradient);
  box-shadow: 0 10px 24px rgba(39, 39, 42, 0.22);
}

.page-checkout .label {
  margin: 0;
}

.page-checkout .label i {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--theme-primary);
  opacity: 0.82;
}

.page-checkout .label input,
.page-checkout .label select,
.page-checkout .label textarea {
  min-height: 58px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(39, 39, 42, 0.05);
}

.page-checkout .label input::placeholder {
  color: rgba(75, 79, 85, 0.58);
}

.page-checkout .label i + input,
.page-checkout .label i + select {
  padding-left: 48px;
}

.page-checkout .checkout-expiration-label {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 4px;
  color: var(--theme-primary-strong);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-checkout .small-s {
  display: block;
  width: 100%;
  margin: 0;
}

.page-checkout .checkout-cvv-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.page-checkout .checkout-cvv-field i {
  top: 29px;
}

.page-checkout .checkout-cvv-field input {
  float: none !important;
  width: 100% !important;
}

.page-checkout .checkout-cvv-field a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 2px;
  background: var(--theme-primary-soft);
  color: var(--theme-primary-strong);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}

.page-checkout .checkout-cvv-field a:hover {
  background: var(--theme-gradient);
  color: #fff;
}

.page-checkout .is_bill,
.page-checkout .cart-terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    rgba(250, 250, 251, 0.98),
    rgba(255, 255, 255, 0.94)
  );
}

.page-checkout .is_bill input,
.page-checkout .cart-terms input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--theme-primary);
}

.page-checkout .cart-terms a {
  color: var(--theme-primary);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-checkout .cards {
  justify-content: space-between;
  padding: 18px 20px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(39, 39, 42, 0.05);
}

.page-checkout .cards span {
  color: var(--theme-primary-strong);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-checkout .cards img {
  max-width: 240px;
  max-height: 38px;
  object-fit: contain;
}

.page-checkout .billing-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 22px;
  margin-top: 4px;
  padding: 24px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: rgba(250, 250, 251, 0.78);
}

.page-checkout .billing-info[style*="display:none"] {
  display: none !important;
}

.page-checkout .frm-container.step2 > center {
  text-align: left;
}

.page-checkout #chekoutbtn {
  min-width: 260px;
  min-height: 58px;
  border: 0;
  border-radius: 2px;
  background: var(--theme-neon);
  color: #1d211a;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(39, 39, 42, 0.22);
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.page-checkout #chekoutbtn:not([disabled]):hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 44px rgba(39, 39, 42, 0.28);
}

.page-checkout .checkout-field-invalid input,
.page-checkout .checkout-field-invalid select,
.page-checkout .checkout-field-invalid textarea {
  border-color: #b44d4d !important;
  box-shadow: 0 0 0 4px rgba(180, 77, 77, 0.12) !important;
}

.page-checkout .checkout-field-invalid.cart-terms {
  border-color: #b44d4d !important;
  box-shadow: 0 0 0 4px rgba(180, 77, 77, 0.1);
}

.page-checkout .checkout-field-error {
  display: block;
  width: 100%;
  margin-top: 7px;
  color: #8f3434;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.page-checkout .cart-terms .checkout-field-error {
  flex-basis: 100%;
  margin-left: 30px;
}

@media (max-width: 991px) {
  .page-checkout .frm-container.step1,
  .page-checkout .frm-container.step2,
  .page-checkout .billing-info {
    grid-template-columns: 1fr;
  }

  .page-checkout .frm-container {
    padding: 26px 20px;
  }

  .page-checkout .checkout-cvv-field {
    grid-template-columns: 1fr;
  }

  .page-checkout .checkout-cvv-field a {
    justify-content: center;
    width: max-content;
  }

  .page-checkout .cards {
    align-items: flex-start;
    flex-direction: column;
  }

  .page-checkout .cards img {
    max-width: 100%;
  }

  .page-checkout #chekoutbtn {
    width: 100%;
    min-width: 0;
  }
}

.page-checkout .cart-terms {
  flex-wrap: wrap;
}

.lux-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 6%, rgba(248, 249, 250, 0.9), transparent 30%),
    linear-gradient(180deg, #f3f4f6 0%, #ffffff 50%, #f3f4f6 100%);
}
.lux-hero {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: center;
  padding: 154px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 12% 18%,
      rgba(156, 163, 175, 0.28),
      transparent 28%
    ),
    radial-gradient(circle at 88% 8%, rgba(39, 39, 42, 0.13), transparent 26%),
    linear-gradient(135deg, #f3f4f6 0%, #eceff2 52%, #ffffff 100%);
}
.lux-hero::before,
.lux-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.lux-hero::before {
  inset: 0;
  opacity: 0.54;
  background-image:
    radial-gradient(rgba(39, 39, 42, 0.1) 1px, transparent 1px),
    linear-gradient(
      115deg,
      transparent 0 43%,
      rgba(255, 255, 255, 0.58) 43% 45%,
      transparent 45% 100%
    );
  background-size:
    26px 26px,
    100% 100%;
  animation: healthDrift 22s linear infinite;
}
.lux-hero::after {
  right: -210px;
  bottom: -230px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(116, 121, 130, 0.2),
    transparent 67%
  );
}
.lux-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 72px;
}
.lux-hero__content h1 {
  max-width: 720px;
  color: var(--theme-primary-strong);
  font-size: clamp(56px, 6vw, 92px);
}
.lux-hero__content p {
  max-width: 610px;
  margin-top: 24px;
  color: var(--theme-text-soft);
  font-size: 18px;
}
.lux-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.lux-hero__badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 650px;
  margin-top: 42px;
}
.lux-badge {
  min-height: 104px;
  padding: 22px;
  border: 1px solid rgba(209, 213, 219, 0.88);
  border-radius: var(--theme-radius-md);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--theme-shadow-sm);
  backdrop-filter: blur(14px);
}
.lux-badge strong {
  display: block;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.lux-badge span {
  display: block;
  margin-top: 8px;
  color: var(--theme-text-soft);
  font-size: 13px;
  font-weight: 700;
}
.lux-hero__visual {
  position: relative;
  min-height: 620px;
}
.lux-hero__frame {
  position: absolute;
  inset: 16px 0 auto auto;
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.92),
    rgba(248, 249, 250, 0.74)
  );
  box-shadow: var(--theme-shadow-lg);
  animation: healthFloat 7s ease-in-out infinite;
}
.lux-hero__frame img {
  display: block;
  width: 100%;
  height: 585px;
  object-fit: cover;
  border-radius: 2px;
}
.lux-float-card {
  position: absolute;
  z-index: 4;
  max-width: 250px;
  padding: 18px 20px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--theme-shadow-md);
  backdrop-filter: blur(15px);
}
.lux-float-card span {
  display: block;
  color: var(--theme-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.lux-float-card strong {
  display: block;
  margin-top: 7px;
  color: var(--theme-text);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
}
.lux-float-card--top {
  left: 0;
  top: 118px;
}
.lux-float-card--bottom {
  right: 0;
  bottom: 72px;
}
.lux-glow {
  position: absolute;
  border-radius: 2px;
  pointer-events: none;
  animation: healthFloat 8s ease-in-out infinite;
}
.lux-glow--one {
  left: -18px;
  bottom: 128px;
  width: 96px;
  height: 96px;
  background: radial-gradient(
    circle,
    rgba(116, 121, 130, 0.32),
    transparent 70%
  );
}
.lux-glow--two {
  right: 36px;
  top: 6px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(39, 39, 42, 0.18), transparent 66%);
  animation-delay: -3s;
}
.lux-intro {
  position: relative;
  padding: 104px 0 68px;
  background: #ffffff;
}
.lux-intro__grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 50px;
  align-items: start;
}
.lux-intro__text h2,
.lux-fixed__content h2 {
  color: var(--theme-primary-strong);
  font-size: clamp(42px, 4vw, 66px);
}
.lux-intro__text p,
.lux-fixed__content p {
  margin-top: 18px;
  color: var(--theme-text-soft);
  font-size: 17px;
}
.lux-intro__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.lux-step-card {
  min-height: 286px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background:
    radial-gradient(
      circle at 30% 0%,
      rgba(248, 249, 250, 0.9),
      transparent 42%
    ),
    #ffffff;
  box-shadow: var(--theme-shadow-sm);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.lux-step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--theme-shadow-md);
}
.lux-step-card span {
  color: var(--theme-accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
}
.lux-step-card h3 {
  margin-top: 16px;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: 34px;
}
.lux-step-card p {
  margin-top: 10px;
  font-size: 14px;
}
.lux-step-card--dark {
  background: var(--theme-gradient);
  border-color: transparent;
}
.lux-step-card--dark span,
.lux-step-card--dark h3,
.lux-step-card--dark p {
  color: #ffffff;
}
.lux-fixed {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  padding: 120px 0;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(39, 39, 42, 0.74) 0%,
      rgba(75, 79, 85, 0.6) 42%,
      rgba(250, 250, 251, 0.18) 100%
    ),
    url("../images/why-choose-us.webp");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.lux-fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.18) 1px,
    transparent 1px
  );
  background-size: 24px 24px;
  pointer-events: none;
}
.lux-fixed__content {
  position: relative;
  z-index: 2;
  max-width: 610px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 68px rgba(39, 39, 42, 0.22);
  backdrop-filter: blur(12px);
}
.lux-fixed__content .site-label,
.lux-fixed__content h2,
.lux-fixed__content p {
  color: #ffffff;
}
.lux-fixed__content .site-label::before {
  background: #9ca3af;
}
.lux-fixed__list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}
.lux-fixed__list div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-weight: 800;
}
@media (max-width: 991px) {
  .lux-hero {
    min-height: auto;
    padding: 116px 0 66px;
  }
  .lux-hero__grid,
  .lux-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lux-hero__content h1 {
    font-size: clamp(46px, 12vw, 64px);
  }
  .lux-hero__visual {
    min-height: 480px;
  }
  .lux-hero__frame {
    position: relative;
    inset: auto;
    width: min(94vw, 480px);
    margin-left: auto;
  }
  .lux-hero__frame img {
    height: 460px;
  }
  .lux-float-card {
    display: none;
  }
  .lux-hero__badges,
  .lux-intro__cards {
    grid-template-columns: 1fr;
  }
  .lux-intro,
  .lux-fixed {
    padding: 64px 0;
  }
  .lux-fixed {
    min-height: 560px;
    background-attachment: scroll;
  }
}
@media (max-width: 560px) {
  .lux-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .lux-hero__frame img {
    height: 360px;
  }
  .lux-fixed__content {
    padding: 26px;
    border-radius: 2px;
  }
}

/* Product gallery with ingredient slide */
.site-product-gallery {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}
.site-product-gallery:not(.slick-initialized)
  .site-product-gallery__slide
  + .site-product-gallery__slide {
  display: none;
}
.site-product-gallery .slick-list,
.site-product-gallery .slick-track {
  display: flex;
  align-items: stretch;
}
.site-product-gallery .slick-slide {
  height: auto;
}
.site-product-gallery .slick-slide > div,
.site-product-gallery__slide {
  height: 100%;
}
.site-product-gallery__slide {
  position: relative;
  min-height: 500px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 42px 26px 34px;
  border-radius: 2px;
}
.site-product-gallery__label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 8px 13px;
  border: 1px solid rgba(209, 213, 219, 0.95);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--theme-primary-strong);
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(39, 39, 42, 0.09);
  backdrop-filter: blur(10px);
}
.site-product-gallery .prd-dtl-1 {
  width: 100%;
  max-width: 430px;
  max-height: 450px;
  object-fit: contain;
}
.site-product-gallery .slick-dots {
  position: static;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}
.site-product-gallery .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}
.site-product-gallery .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--theme-primary-soft);
  color: transparent;
  font-size: 0;
  transition:
    transform 0.22s ease,
    background-color 0.22s ease,
    width 0.22s ease;
}
.site-product-gallery .slick-dots button::before {
  display: none;
}
.site-product-gallery .slick-dots .slick-active button {
  width: 26px;
  border-radius: 2px;
  background: var(--theme-neon);
}
.site-product-gallery .slick-arrow {
  position: absolute;
  top: 50%;
  z-index: 8;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--theme-neon);
  border-radius: 3px;
  background: var(--theme-neon) !important;
  background-image: none !important;
  color: transparent;
  font-size: 0;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(39, 39, 42, 0.18);
  transform: translateY(-50%);
  cursor: pointer;
  transition:
    background-color 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease,
    opacity 0.22s ease;
}
.site-product-gallery .slick-arrow:hover {
  background: #34363a !important;
  border-color: #34363a;
  box-shadow: 0 16px 30px rgba(116, 121, 130, 0.24);
  transform: translateY(-50%) scale(1.04);
}
.site-product-gallery .slick-arrow::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 2px solid #1d211a;
  border-right: 2px solid #1d211a;
}
.site-product-gallery .slick-arrow:hover::before {
  border-color: var(--theme-neon);
}
.site-product-gallery .slick-prev {
  left: 12px;
}
.site-product-gallery .slick-next {
  right: 12px;
}
.site-product-gallery .slick-prev::before {
  transform: rotate(-135deg);
  margin-left: 4px;
}
.site-product-gallery .slick-next::before {
  transform: rotate(45deg);
  margin-right: 4px;
}
.site-product-gallery .slick-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Ingredients image page */
.site-ingredients-content {
  padding-top: 82px;
}
.site-ingredients-shell {
  overflow: hidden;
}
.site-ingredients-intro {
  position: relative;
  margin: 4px 0 30px;
  padding: 34px;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background:
    radial-gradient(
      circle at 8% 0%,
      rgba(248, 249, 250, 0.95),
      transparent 36%
    ),
    linear-gradient(
      135deg,
      rgba(250, 250, 251, 0.98),
      rgba(255, 255, 255, 0.94)
    );
  box-shadow: var(--theme-shadow-sm);
}
.site-ingredients-intro h2 {
  color: var(--theme-primary-strong);
  font-size: clamp(38px, 4vw, 58px);
}
.site-ingredients-intro p {
  max-width: 720px;
  margin: 14px 0 0;
  font-size: 16px;
}
.site-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.site-ingredients-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid var(--theme-border);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--theme-shadow-sm);
  overflow: hidden;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    border-color 0.24s ease;
}
.site-ingredients-card:hover {
  transform: translateY(-4px);
  border-color: rgba(116, 121, 130, 0.58);
  box-shadow: var(--theme-shadow-md);
}
.site-ingredients-card__header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(209, 213, 219, 0.72);
  background: linear-gradient(135deg, #f3f4f6, #ffffff);
}
.site-ingredients-card__header span {
  display: inline-flex;
  color: var(--theme-accent);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.site-ingredients-card__header h3 {
  margin-top: 8px;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 38px);
}
.site-ingredients-card__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 430px;
  padding: 28px;
  background: radial-gradient(
    circle at 50% 16%,
    #ffffff 0,
    #eceff2 42%,
    #ffffff 100%
  );
}
.site-ingredients-card__media img {
  display: block;
  width: 100%;
  max-width: 520px;
  max-height: 560px;
  object-fit: contain;
  filter: drop-shadow(0 18px 34px rgba(39, 39, 42, 0.12));
}

@media (max-width: 1024px) {
  .site-product-gallery__slide {
    min-height: 440px;
  }
  .site-ingredients-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 560px) {
  .site-product-gallery__slide {
    min-height: 330px;
    padding: 42px 12px 24px;
  }
  .site-product-gallery .prd-dtl-1 {
    max-height: 320px;
  }
  .site-product-gallery .slick-arrow {
    width: 38px;
    height: 38px;
  }
  .site-product-gallery .slick-prev {
    left: 8px;
  }
  .site-product-gallery .slick-next {
    right: 8px;
  }
  .site-ingredients-intro,
  .site-ingredients-card__header,
  .site-ingredients-card__media {
    padding: 22px;
  }
  .site-ingredients-card__media {
    min-height: 320px;
  }
  .site-ingredients-card__media img {
    max-height: 430px;
  }
}

/* Home fixed background section correction */
.lux-fixed {
  padding: 132px 0;
}
.lux-fixed .container {
  display: flex;
  justify-content: center;
}
.lux-fixed__content {
  width: min(100%, 900px);
  max-width: 900px;
  margin: 0 auto;
  padding: 56px;
  text-align: center;
  background: rgba(39, 39, 42, 0.32);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 86px rgba(39, 39, 42, 0.28);
}
.lux-fixed__content .site-label {
  justify-content: center;
}
.lux-fixed__content .site-label::after {
  content: "";
  width: 34px;
  height: 1px;
  border-radius: 2px;
  background: #9ca3af;
}
.lux-fixed__content p {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.lux-fixed__list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.lux-fixed__list div {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 18px 20px;
  text-align: center;
}

@media (max-width: 991px) {
  .lux-fixed__content {
    width: 100%;
    padding: 34px;
  }
  .lux-fixed__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .lux-fixed__content {
    padding: 26px;
    text-align: left;
  }
  .lux-fixed__content .site-label {
    justify-content: flex-start;
  }
  .lux-fixed__content .site-label::after {
    display: none;
  }
  .lux-fixed__list div {
    justify-content: flex-start;
    text-align: left;
  }
}
