:root {
  --theme-bg: #f4f6f8;
  --theme-surface: #ffffff;
  --theme-surface-soft: #eaf4fb;
  --theme-surface-warm: #fff4f8;
  --theme-border: #d9e1e8;
  --theme-text: #303842;
  --theme-text-soft: #687582;
  --theme-primary: #d45f8e;
  --theme-primary-strong: #aa3f6d;
  --theme-primary-soft: #fff0f6;
  --theme-accent: #78bfe9;
  --theme-accent-strong: #4e9ed1;
  --theme-accent-soft: #eaf6fd;
  --theme-gold: #d45f8e;
  --theme-white: #ffffff;
  --theme-gradient: linear-gradient(135deg, #e37ba6 0%, #d45f8e 46%, #78bfe9 100%);
  --theme-gradient-soft: linear-gradient(135deg, #ffffff 0%, #fff0f6 46%, #eaf6fd 100%);
  --theme-radius-xs: 4px;
  --theme-radius-sm: 6px;
  --theme-radius-md: 9px;
  --theme-radius-lg: 13px;
  --theme-radius-xl: 18px;
  --theme-shadow-sm: 0 12px 30px rgba(48, 56, 66, 0.07);
  --theme-shadow-md: 0 22px 56px rgba(48, 56, 66, 0.11);
  --theme-shadow-lg: 0 34px 86px rgba(48, 56, 66, 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(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(217, 225, 232, 0.82);
  box-shadow: 0 12px 34px rgba(63, 72, 83, 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: 999px;
  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(63, 72, 83, 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: 99px;
  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: 999px;
  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: 999px;
  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::after,
.s2btn2::after,
.site-product-btn::after,
.commonbtn::after,
.prod-clearcart::after {
  content: "";
  position: absolute;
  inset: -70% auto -70% -45%;
  z-index: -1;
  width: 36%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.74),
    transparent
  );
  transform: rotate(18deg);
  transition: left 0.48s ease;
}
.health-btn:hover,
.s2btn2:hover,
.site-product-btn:hover,
.commonbtn:hover,
.cont-shop:hover,
.prod-clearcart:hover {
  transform: translateY(-2px);
}
.health-btn:hover::after,
.s2btn2:hover::after,
.site-product-btn:hover::after,
.commonbtn:hover::after,
.prod-clearcart:hover::after {
  left: 118%;
}
.health-btn--primary,
.s2btn2,
.site-product-btn,
.commonbtn,
.prod-clearcart {
  background: var(--theme-gradient);
  color: var(--theme-white) !important;
  box-shadow: 0 18px 38px rgba(63, 72, 83, 0.24);
}
.health-btn--secondary,
.cont-shop {
  background: rgba(255, 255, 255, 0.82);
  color: var(--theme-primary-strong) !important;
  border: 1px solid rgba(217, 225, 232, 0.92);
  box-shadow: 0 14px 30px rgba(63, 72, 83, 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: 18px;
  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(63, 72, 83, 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: #d86f97;
  background: rgba(211, 95, 114, 0.08);
  box-shadow:
    0 0 0 4px rgba(211, 95, 114, 0.13),
    0 12px 28px rgba(63, 72, 83, 0.1);
  animation: healthShake 0.42s ease;
}
.validation_error.error_span {
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #ad466c;
  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 {
  overflow: hidden;
  background: linear-gradient(180deg, #f7f9fb 0%, #f7f9fb 48%, #ffffff 100%);
}
.health-hero {
  position: relative;
  min-height: 820px;
  padding: 152px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(234, 246, 253, 0.82),
      transparent 28%
    ),
    radial-gradient(
      circle at 76% 18%,
      rgba(255, 255, 255, 0.9),
      transparent 24%
    ),
    linear-gradient(135deg, #f7f9fb 0%, #fff0f6 48%, #ffffff 100%);
}
.health-hero::before {
  content: "";
  position: absolute;
  inset: 9% auto auto -9%;
  width: 42vw;
  height: 42vw;
  min-width: 520px;
  min-height: 520px;
  border-radius: 44% 56% 62% 38%;
  background: radial-gradient(
    circle at 40% 35%,
    rgba(255, 255, 255, 0.76),
    rgba(169, 217, 242, 0.32) 46%,
    transparent 70%
  );
  animation: healthMorph 12s ease-in-out infinite;
}
.health-hero::after {
  content: "";
  position: absolute;
  right: -16%;
  bottom: -24%;
  width: 54vw;
  height: 54vw;
  min-width: 560px;
  min-height: 560px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(120, 191, 233, 0.26),
    transparent 66%
  );
}
.health-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(63, 72, 83, 0.11) 1px, transparent 1px),
    linear-gradient(
      115deg,
      transparent 0 42%,
      rgba(255, 255, 255, 0.42) 42% 44%,
      transparent 44% 100%
    );
  background-size:
    26px 26px,
    100% 100%;
  animation: healthDrift 20s linear infinite;
}
.health-shape,
.health-ring,
.health-bubble {
  position: absolute;
  pointer-events: none;
}
.health-shape {
  border-radius: 999px;
  animation: healthFloat 8s ease-in-out infinite;
}
.health-shape--one {
  top: 150px;
  left: 5%;
  width: 120px;
  height: 120px;
  background: radial-gradient(
    circle,
    rgba(120, 191, 233, 0.34),
    transparent 68%
  );
}
.health-shape--two {
  right: 10%;
  top: 180px;
  width: 210px;
  height: 210px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.74),
    transparent 65%
  );
  animation-delay: -2.4s;
}
.health-shape--three {
  left: 39%;
  bottom: 88px;
  width: 96px;
  height: 96px;
  background: radial-gradient(
    circle,
    rgba(212, 95, 142, 0.18),
    transparent 70%
  );
  animation-delay: -4.2s;
}
.health-ring {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(63, 72, 83, 0.18);
  border-radius: 33% 67% 48% 52%;
  animation: healthSpin 20s linear infinite;
}
.health-ring--one {
  top: 244px;
  left: 45%;
}
.health-ring--two {
  right: 3%;
  bottom: 126px;
  width: 180px;
  height: 180px;
  animation-direction: reverse;
}
.health-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  align-items: center;
  gap: 70px;
}
.health-hero__content h1 {
  max-width: 680px;
  font-size: clamp(54px, 6vw, 86px);
  color: #aa3f6d;
}
.health-hero__content p {
  max-width: 590px;
  margin-top: 24px;
  font-size: 18px;
  color: #6d7883;
}
.health-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.health-hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 630px;
  margin-top: 42px;
}
.health-metric {
  min-height: 104px;
  padding: 22px;
  border: 1px solid rgba(217, 225, 232, 0.88);
  border-radius: var(--theme-radius-md);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: var(--theme-shadow-sm);
  backdrop-filter: blur(14px);
}
.health-metric strong {
  display: block;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}
.health-metric span {
  display: block;
  margin-top: 8px;
  color: var(--theme-text-soft);
  font-size: 13px;
  font-weight: 700;
}
.health-hero__visual {
  position: relative;
  min-height: 610px;
}
.health-photo-card {
  position: absolute;
  inset: 34px 0 0 auto;
  width: min(100%, 560px);
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 48% 52% 46% 54% / 42% 46% 54% 58%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 240, 246, 0.66)
  );
  box-shadow: var(--theme-shadow-lg);
  animation: healthFloat 7s ease-in-out infinite;
}
.health-photo-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: inherit;
}
.health-panel {
  position: absolute;
  z-index: 4;
  max-width: 240px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 225, 232, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--theme-shadow-md);
  backdrop-filter: blur(15px);
}
.health-panel span {
  display: block;
  color: var(--theme-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.health-panel strong {
  display: block;
  margin-top: 7px;
  color: var(--theme-text);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
}
.health-panel--top {
  left: 0;
  top: 118px;
}
.health-panel--bottom {
  right: 0;
  bottom: 78px;
}
.health-bubble--one {
  left: 48px;
  bottom: 120px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--theme-primary);
  opacity: 0.35;
}
.health-bubble--two {
  right: 72px;
  top: 42px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--theme-gold);
  opacity: 0.55;
}

.health-bridge {
  position: relative;
  padding: 105px 0 46px;
  background: #f7f9fb;
}
.health-bridge__shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  padding: 44px;
  border: 1px solid rgba(217, 225, 232, 0.82);
  border-radius: var(--theme-radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--theme-shadow-md);
  overflow: hidden;
}
.health-bridge__shell::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 45% 55% 70% 30%;
  background: radial-gradient(
    circle,
    rgba(234, 246, 253, 0.76),
    transparent 66%
  );
  animation: healthMorph 11s ease-in-out infinite;
}
.health-bridge__intro {
  position: relative;
  z-index: 2;
}
.health-bridge__intro h2,
.health-routine__content h2,
.site-products__intro h2,
.site-shop-head h2 {
  font-size: clamp(42px, 4vw, 64px);
  color: #aa3f6d;
}
.health-bridge__intro p,
.health-routine__content p,
.site-products__text,
.site-shop-head p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--theme-text-soft);
}
.health-bridge__cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.health-mini-card {
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  border: 1px solid var(--theme-border);
  border-radius: 30px;
  background: linear-gradient(180deg, #fff, #fff0f6);
  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-gold);
  font-weight: 900;
  letter-spacing: 0.16em;
}
.health-mini-card h3 {
  margin-top: 14px;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: 34px;
}
.health-mini-card p {
  margin-top: 10px;
  font-size: 14px;
}
.health-mini-card--active {
  background: var(--theme-gradient);
}
.health-mini-card--active h3,
.health-mini-card--active p,
.health-mini-card--active span {
  color: #fff;
}

.health-routine {
  position: relative;
  padding: 64px 0 112px;
  background: linear-gradient(180deg, #f7f9fb, #fff);
}
.health-routine .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 68px;
}
.health-routine__media {
  position: relative;
  min-height: 520px;
}
.health-routine__media img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 42px;
  box-shadow: var(--theme-shadow-lg);
}
.health-routine__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.health-routine__orb--one {
  left: -40px;
  top: -34px;
  width: 170px;
  height: 170px;
  background: radial-gradient(
    circle,
    rgba(120, 191, 233, 0.28),
    transparent 68%
  );
}
.health-routine__orb--two {
  right: -42px;
  bottom: -34px;
  width: 210px;
  height: 210px;
  background: radial-gradient(
    circle,
    rgba(212, 95, 142, 0.18),
    transparent 68%
  );
}
.health-routine__list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.health-routine__list div {
  padding: 18px 20px;
  border: 1px solid var(--theme-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--theme-shadow-sm);
}
.health-routine__list strong {
  display: block;
  color: var(--theme-primary-strong);
  font-size: 16px;
}
.health-routine__list span {
  display: block;
  margin-top: 4px;
  color: var(--theme-text-soft);
  font-size: 14px;
}

.site-products,
.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, #fff, #f7f9fb);
}
.site-products__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}
.site-products__text {
  max-width: 430px;
}
.prod-box {
  position: relative;
}
.s2list {
  margin: 0 -12px;
}
.s2box {
  height: 100%;
  padding: 12px;
}
.s2list-bx,
.site-shop-card__image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 310px;
  padding: 26px;
  border: 1px solid rgba(217, 225, 232, 0.9);
  border-radius: 34px 34px 20px 20px;
  background: radial-gradient(
    circle at 50% 18%,
    #fff 0,
    #fff0f6 42%,
    #fff 100%
  );
}
.s2prd2 {
  width: 100%;
  max-width: 250px;
  height: 250px;
  object-fit: contain;
  transition: transform 0.25s ease;
}
.s2list-text,
.site-shop-card__content {
  padding: 24px;
  border: 1px solid rgba(217, 225, 232, 0.9);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--theme-shadow-sm);
  text-align: center;
}
.s2box:hover .s2prd2 {
  transform: translateY(-6px) scale(1.025);
}
.s2prd-hding2,
.site-shop-card__name {
  min-height: 58px;
  color: var(--theme-text);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}
.s2prd-prc2,
.site-shop-card__price {
  margin: 12px 0 18px;
  color: var(--theme-primary);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
}
.slick-arrow {
  position: absolute;
  z-index: 5;
  top: 38%;
  width: 48px;
  height: 48px;
  border: 1px solid var(--theme-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: transparent;
  box-shadow: var(--theme-shadow-sm);
}
.slick-prev {
  left: -8px;
}
.slick-next {
  right: -8px;
}
.slick-arrow::before {
  color: var(--theme-primary);
  font-family: FontAwesome;
  font-size: 28px;
  line-height: 1;
  opacity: 1;
}
.slick-prev::before {
  content: "\f104";
}
.slick-next::before {
  content: "\f105";
}

.site-shop-page,
.site-product-page,
.site-contact-page,
.site-legal-page,
.site-thankyou-page,
.site-checkout-page {
  background: #f7f9fb;
}
.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(63, 72, 83, 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: #aa3f6d;
  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: 34px;
  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: 42px;
  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: 34px;
  background: radial-gradient(circle at 50% 20%, #fff, #fff0f6 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: 16px;
  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(120, 191, 233, 0.14);
}
.paywhirl_app,
.hulk_app {
  margin-top: 22px;
}
.paywhirl-plan-selector {
  padding: 20px;
  border: 1px solid var(--theme-border);
  border-radius: 22px;
  background: #f7f9fb;
}
.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: 18px;
  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: 36px;
  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: 18px;
  background: #f7f9fb;
  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, #f7f9fb, #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: 18px;
  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: 26px;
  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: 560px;
  border-radius: 36px;
  overflow: hidden;
}
.site-contact-media > img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
}
.site-contact-panel {
  position: absolute;
  right: 34px;
  top: 34px;
  bottom: 34px;
  width: min(480px, calc(100% - 68px));
  padding: 32px;
  border: 1px solid rgba(217, 225, 232, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--theme-shadow-md);
  backdrop-filter: blur(16px);
  overflow: auto;
}
.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: 10px;
  font-size: 48px;
}
.site-contact-panel__intro {
  margin-top: 12px;
}
.site-contact-panel__list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}
.site-contact-panel__item,
.site-thankyou-support__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--theme-border);
  border-radius: 18px;
  background: #fff;
}
.site-contact-panel__icon,
.site-footer__icon,
.site-thankyou-support__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  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: 18px;
  background: #f7f9fb;
}
.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: 28px;
  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: 24px;
  background: #f7f9fb;
  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: 28px;
  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: 24px;
  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: 28px;
  background: #f7f9fb;
}
.site-thankyou-support__right {
  display: grid;
  gap: 14px;
}

.site-footer {
  position: relative;
  background: #d45f8e;
  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(120, 191, 233, 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: #aa3f6d;
  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: 44% 56% 62% 38% / 48% 38% 62% 52%;
    transform: rotate(0deg) scale(1);
  }
  50% {
    border-radius: 61% 39% 42% 58% / 42% 58% 42% 58%;
    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 .container,
  .prod-spec,
  .site-thankyou-support {
    grid-template-columns: 1fr;
  }
  .health-hero {
    padding-top: 132px;
  }
  .health-hero__visual {
    min-height: 560px;
  }
  .health-photo-card {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .health-bridge__cards,
  .site-shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .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(255, 255, 255, 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-hero__metrics,
  .health-bridge__cards,
  .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(92vw, 430px);
  }
  .health-panel {
    display: none;
  }
  .health-bridge,
  .health-routine,
  .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: 28px;
  }
  .health-routine__media,
  .prds-left {
    min-height: 360px;
  }
  .health-routine__media img {
    height: 360px;
  }
  .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;
  }
  .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: 42px;
  background:
    radial-gradient(circle at 12% 0%, rgba(234, 246, 253, 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: 999px;
  background: var(--theme-gradient);
  box-shadow: 0 10px 24px rgba(63, 72, 83, 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: 20px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 26px rgba(63, 72, 83, 0.05);
}

.page-checkout .label input::placeholder {
  color: rgba(63, 72, 83, 0.48);
}

.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: 999px;
  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: 22px;
  background: linear-gradient(135deg, rgba(247, 249, 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: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(63, 72, 83, 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: 28px;
  background: rgba(247, 249, 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: 999px;
  background: var(--theme-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 18px 36px rgba(63, 72, 83, 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(63, 72, 83, 0.28);
}

.page-checkout .checkout-field-invalid input,
.page-checkout .checkout-field-invalid select,
.page-checkout .checkout-field-invalid textarea {
  border-color: #cc6b92 !important;
  box-shadow: 0 0 0 4px rgba(212, 95, 142, 0.12) !important;
}

.page-checkout .checkout-field-invalid.cart-terms {
  border-color: #cc6b92 !important;
  box-shadow: 0 0 0 4px rgba(212, 95, 142, 0.1);
}

.page-checkout .checkout-field-error {
  display: block;
  width: 100%;
  margin-top: 7px;
  color: #c65882;
  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(234, 246, 253, 0.9), transparent 30%),
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 50%, #f7f9fb 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(169, 217, 242, 0.28), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(63, 72, 83, 0.13), transparent 26%),
    linear-gradient(135deg, #f7f9fb 0%, #fff0f6 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(63, 72, 83, 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(120, 191, 233, 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(217, 225, 232, 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: 44px 44px 120px 44px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(234,246,253,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: 34px 34px 104px 34px;
}
.lux-float-card {
  position: absolute;
  z-index: 4;
  max-width: 250px;
  padding: 18px 20px;
  border: 1px solid rgba(217, 225, 232, 0.95);
  border-radius: 24px;
  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: 999px;
  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(120, 191, 233, 0.32), transparent 70%);
}
.lux-glow--two {
  right: 36px;
  top: 6px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(63, 72, 83, 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,
.site-products__intro h2 {
  color: var(--theme-primary-strong);
  font-size: clamp(42px, 4vw, 66px);
}
.lux-intro__text p,
.lux-fixed__content p,
.site-products__text {
  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: 32px;
  background:
    radial-gradient(circle at 30% 0%, rgba(234,246,253,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(48,55,65,0.74) 0%, rgba(63,72,83,0.58) 42%, rgba(247,249,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: 38px;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 28px 68px rgba(48,55,65,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: #a9d9f2; }
.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: 18px;
  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: 28px; }
}

/* Product gallery with ingredient slide */
.site-product-gallery {
  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: 30px;
}
.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(217, 225, 232, 0.95);
  border-radius: 999px;
  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(63, 72, 83, 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: 999px;
  background: var(--theme-gradient);
}
.site-product-gallery .slick-arrow {
  top: 50%;
  transform: translateY(-50%);
}
.site-product-gallery .slick-prev {
  left: -18px;
}
.site-product-gallery .slick-next {
  right: -18px;
}

/* 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: 30px;
  background:
    radial-gradient(circle at 8% 0%, rgba(234, 246, 253, 0.95), transparent 36%),
    linear-gradient(135deg, rgba(247, 249, 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: 32px;
  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(120, 191, 233, 0.58);
  box-shadow: var(--theme-shadow-md);
}
.site-ingredients-card__header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(217, 225, 232, 0.82);
  background: linear-gradient(135deg, #f7f9fb, #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, #fff0f6 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(63, 72, 83, 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-prev {
    left: -10px;
  }
  .site-product-gallery .slick-next {
    right: -10px;
  }
  .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(48, 55, 65, 0.32);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 86px rgba(48, 55, 65, 0.28);
}
.lux-fixed__content .site-label {
  justify-content: center;
}
.lux-fixed__content .site-label::after {
  content: "";
  width: 34px;
  height: 1px;
  border-radius: 999px;
  background: #a9d9f2;
}
.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;
  }
}

:root {
  --theme-bg: #f4f6f8;
  --theme-surface: #ffffff;
  --theme-surface-soft: #eaf4fb;
  --theme-surface-warm: #fff4f8;
  --theme-border: #d9e1e8;
  --theme-text: #303842;
  --theme-text-soft: #687582;
  --theme-muted: #87939e;
  --theme-primary: #d45f8e;
  --theme-primary-strong: #aa3f6d;
  --theme-primary-deep: #823052;
  --theme-primary-soft: #fff0f6;
  --theme-accent: #78bfe9;
  --theme-accent-strong: #4e9ed1;
  --theme-accent-soft: #eaf6fd;
  --theme-graphite: #3f4853;
  --theme-graphite-soft: #65717c;
  --theme-gold: #d45f8e;
  --theme-white: #ffffff;
  --theme-gradient: linear-gradient(135deg, #e37ba6 0%, #d45f8e 46%, #78bfe9 100%);
  --theme-gradient-soft: linear-gradient(135deg, #ffffff 0%, #fff0f6 46%, #eaf6fd 100%);
  --theme-radius-xs: 4px;
  --theme-radius-sm: 6px;
  --theme-radius-md: 9px;
  --theme-radius-lg: 13px;
  --theme-radius-xl: 18px;
  --theme-shadow-sm: 0 12px 30px rgba(48, 56, 66, 0.07);
  --theme-shadow-md: 0 22px 56px rgba(48, 56, 66, 0.11);
  --theme-shadow-lg: 0 34px 86px rgba(48, 56, 66, 0.16);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Archivo", "Manrope", Arial, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  background: var(--theme-bg);
  color: var(--theme-text);
  font-family: var(--font-body);
  line-height: 1.68;
}
a:hover { color: var(--theme-primary); }

.headersec {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(217,225,232,.86);
  box-shadow: 0 14px 34px rgba(48,56,66,.07);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.site-nav-wrap { min-height: 82px; }
.logo img { max-width: 184px; max-height: 56px; object-fit: contain; }
.cmenu ul { gap: 5px; }
.cmenu ul li a {
  min-height: 42px;
  padding: 10px 13px;
  border-radius: 5px;
  color: var(--theme-graphite);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.cmenu ul li.active > a,
.cmenu ul li a:hover {
  background: var(--theme-primary-soft);
  color: var(--theme-primary);
}
.site-nav-cart__link {
  background: #fff;
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-sm);
}
.cart-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--theme-gradient);
  box-shadow: 0 10px 24px rgba(212,95,142,.22);
}
.cart-icon strong {
  border-radius: 4px;
  color: var(--theme-primary);
}
.rmenubar a {
  border-radius: 6px;
  background: var(--theme-primary-soft);
  color: var(--theme-primary);
}

.site-label,
.health-eyebrow {
  color: var(--theme-primary);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
}
.site-label::before,
.health-eyebrow::before {
  width: 36px;
  height: 2px;
  border-radius: 0;
  background: var(--theme-gradient);
}
h1, h2, h3, h4 {
  color: var(--theme-text);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.035em;
}
p { color: var(--theme-text-soft); }

.health-btn,
.s2btn2,
.site-product-btn,
.commonbtn,
.cont-shop,
.prod-clearcart,
.site-shop-card__btn,
.page-checkout #chekoutbtn {
  min-height: 52px;
  border-radius: 6px !important;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.health-btn::after,
.s2btn2::after,
.site-product-btn::after,
.commonbtn::after,
.cont-shop::after,
.site-shop-card__btn::after,
.page-checkout #chekoutbtn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -44%;
  width: 34%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.32), transparent);
  transition: left .52s ease;
  pointer-events: none;
}
.health-btn:hover::after,
.s2btn2:hover::after,
.site-product-btn:hover::after,
.commonbtn:hover::after,
.cont-shop:hover::after,
.site-shop-card__btn:hover::after,
.page-checkout #chekoutbtn:hover::after { left: 120%; }
.health-btn--primary,
.s2btn2,
.site-product-btn,
.commonbtn,
.prod-clearcart,
.page-checkout #chekoutbtn {
  background: var(--theme-gradient);
  color: #fff !important;
  border: 0;
  box-shadow: 0 16px 36px rgba(212,95,142,.20);
}
.health-btn--secondary,
.cont-shop,
.health-btn--ghost {
  background: #fff;
  color: var(--theme-primary) !important;
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-sm);
}
.health-btn--ghost {
  background: var(--theme-surface-warm);
  color: var(--theme-graphite) !important;
}
.health-btn:hover,
.s2btn2:hover,
.site-product-btn:hover,
.commonbtn:hover,
.cont-shop:hover,
.prod-clearcart:hover,
.site-shop-card__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(212,95,142,.15);
}

.fit-home,
.carmine-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(120,191,233,.08), transparent 28%),
    linear-gradient(180deg, #f4f6f8 0%, #ffffff 55%, #f4f6f8 100%);
}
.fit-hero.fit-hero--carmine-campaign {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: stretch;
  padding: 126px 0 74px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(120,191,233,.14), transparent 24%),
    radial-gradient(circle at 84% 24%, rgba(212,95,142,.10), transparent 28%),
    linear-gradient(180deg, #fff4f8 0%, #ffffff 64%, #eaf4fb 64.2%, #ffffff 100%);
}
.fit-hero--carmine-campaign .container {
  position: relative;
  z-index: 2;
}
.fit-hero__grid-bg {
  position: absolute;
  inset: 0;
  opacity: .46;
  background-image:
    linear-gradient(rgba(63,72,83,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63,72,83,.055) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: carmineGridMove 18s linear infinite;
}
.fit-hero__energy,
.fit-hero__diagonal {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  transform: skewX(-22deg) rotate(-10deg);
}
.fit-hero__energy {
  width: 430px;
  height: 76px;
  opacity: .42;
  animation: carmineEnergySlide 8s ease-in-out infinite;
}
.fit-hero__energy--one { right: -110px; top: 210px; background: rgba(120,191,233,.26); }
.fit-hero__energy--two { left: -150px; bottom: 240px; background: rgba(63,72,83,.10); animation-delay: -3s; }
.fit-hero__diagonal {
  width: 220px;
  height: 16px;
  opacity: .34;
  background: var(--theme-primary);
  animation: carmineLineDrift 6s ease-in-out infinite;
}
.fit-hero__diagonal--one { top: 176px; left: 8%; }
.fit-hero__diagonal--two { bottom: 180px; right: 13%; animation-delay: -2s; }
.carmine-hero__campaign {
  position: relative;
  display: grid;
  gap: 28px;
}
.carmine-hero__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  animation: carmineLayerIn .68s ease both;
}
.carmine-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--theme-border);
  border-radius: 4px;
  background: rgba(255,255,255,.82);
  color: var(--theme-graphite-soft);
  box-shadow: var(--theme-shadow-sm);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.carmine-hero__masthead {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .48fr);
  align-items: end;
  gap: 34px;
  animation: carmineLayerIn .76s ease both .06s;
}
.carmine-hero__title-block { position: relative; }
.carmine-hero__seal {
  display: inline-flex;
  margin-bottom: 18px;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  border-radius: 4px;
  background: var(--theme-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(212,95,142,.22);
}
.carmine-hero__title-block h1 {
  max-width: 980px;
  color: var(--theme-text);
  font-size: clamp(58px, 6.2vw, 100px);
  line-height: .86;
  letter-spacing: -.07em;
  text-transform: uppercase;
}
.carmine-hero__intro-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--theme-border);
  border-radius: 9px;
  background: rgba(255,255,255,.92);
  box-shadow: var(--theme-shadow-md);
  overflow: hidden;
}
.carmine-hero__intro-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--theme-gradient);
}
.carmine-hero__intro-card strong {
  display: block;
  color: var(--theme-graphite);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
}
.carmine-hero__intro-card p {
  margin: 12px 0 20px;
  font-size: 14px;
}
.carmine-hero__editorial-stage {
  position: relative;
  min-height: 452px;
  display: grid;
  grid-template-columns: minmax(190px, .34fr) minmax(0, 1fr) minmax(200px, .34fr);
  align-items: center;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--theme-border);
  border-radius: 12px;
  background:
    linear-gradient(115deg, rgba(255,255,255,.96), rgba(255,240,246,.72)),
    linear-gradient(135deg, #fff, #eaf4fb);
  box-shadow: var(--theme-shadow-lg);
  overflow: hidden;
  animation: carmineLayerIn .84s ease both .14s;
}
.carmine-hero__editorial-stage::before,
.carmine-hero__editorial-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.carmine-hero__editorial-stage::before {
  inset: 52px -10% auto;
  height: 96px;
  background: var(--theme-gradient);
  opacity: .94;
  transform: skewY(-4deg);
  box-shadow: 0 18px 44px rgba(212,95,142,.20);
  animation: carmineStripePulse 5s ease-in-out infinite;
}
.carmine-hero__editorial-stage::after {
  inset: auto -8% 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212,95,142,.34), transparent);
}
.carmine-hero__image-wrap {
  position: relative;
  z-index: 3;
  min-height: 440px;
  border-radius: 7px;
  overflow: hidden;
  background: #edf3f7;
  box-shadow: 0 28px 70px rgba(48,56,66,.18);
  transform: rotate(-1.1deg);
  transition: transform .35s ease, box-shadow .35s ease, filter .35s ease;
}
.carmine-hero__image-wrap:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: 0 36px 88px rgba(212,95,142,.18);
  filter: saturate(1.04);
}
.carmine-hero__image-wrap img {
  display: block;
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.02);
}
.carmine-hero__image-label {
  position: absolute;
  z-index: 4;
  left: 16px;
  top: 16px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 4px;
  background: rgba(255,255,255,.86);
  color: var(--theme-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
  box-shadow: var(--theme-shadow-sm);
}
.carmine-hero__benefit {
  position: relative;
  z-index: 4;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  border-radius: 7px;
  border: 1px solid rgba(217,225,232,.92);
  background: rgba(255,255,255,.90);
  box-shadow: var(--theme-shadow-md);
  backdrop-filter: blur(10px);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.carmine-hero__benefit:hover {
  transform: translateY(-5px);
  border-color: rgba(212,95,142,.25);
  box-shadow: 0 24px 58px rgba(212,95,142,.13);
}
.carmine-hero__benefit--top { transform: translateY(-30px); }
.carmine-hero__benefit--top:hover { transform: translateY(-36px); }
.carmine-hero__benefit--bottom { transform: translateY(36px); }
.carmine-hero__benefit--bottom:hover { transform: translateY(30px); }
.carmine-hero__benefit span {
  color: var(--theme-primary);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.carmine-hero__benefit strong {
  display: block;
  margin-top: 12px;
  color: var(--theme-text);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.02;
  text-transform: uppercase;
}
.carmine-hero__benefit p {
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.55;
}
.carmine-hero__side-note {
  position: absolute;
  z-index: 5;
  right: 34px;
  top: 26px;
  width: 250px;
  padding: 18px 20px;
  border-radius: 7px;
  background: rgba(63,72,83,.92);
  color: #fff;
  box-shadow: var(--theme-shadow-md);
}
.carmine-hero__side-note span {
  display: block;
  margin-bottom: 8px;
  color: #b9e4f8;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.carmine-hero__side-note strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.35;
}
.carmine-hero__bottom-row {
  display: grid;
  grid-template-columns: minmax(280px, .44fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 20px;
  border-radius: 9px;
  background: #ffffff;
  border: 1px solid var(--theme-border);
  box-shadow: var(--theme-shadow-md);
  animation: carmineLayerIn .8s ease both .22s;
}
.fit-hero--carmine-campaign .fit-hero__actions { align-content: center; margin: 0; }
.fit-hero--carmine-campaign .fit-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  max-width: none;
  margin: 0;
}
.fit-stat {
  min-height: 110px;
  padding: 18px;
  border: 1px solid var(--theme-border);
  border-radius: 7px;
  background: linear-gradient(135deg, #ffffff, #f4f6f8);
  box-shadow: none;
}
.fit-stat strong {
  display: block;
  color: var(--theme-primary);
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}
.fit-stat span {
  display: block;
  margin-top: 10px;
  color: var(--theme-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}
.fit-stat--accent {
  background: var(--theme-primary-soft);
  border-color: rgba(212,95,142,.18);
}

.fit-system {
  padding: 104px 0 76px;
  background: #ffffff;
}
.fit-system__top {
  display: grid;
  grid-template-columns: .72fr 1.12fr .88fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.fit-system__top .site-label { align-self: start; }
.fit-system__top h2,
.fit-fixed__content h2,
.site-products__intro h2,
.site-shop-head h2,
.lux-intro__text h2,
.lux-fixed__content h2,
.health-bridge__intro h2,
.health-routine__content h2 {
  color: var(--theme-text);
  font-size: clamp(40px, 4.1vw, 68px);
  line-height: .98;
}
.fit-system__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}
.fit-system-card,
.lux-step-card,
.health-mini-card {
  min-height: 276px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  border: 1px solid var(--theme-border);
  border-radius: 9px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(234,244,251,.74));
  box-shadow: var(--theme-shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  position: relative;
  overflow: hidden;
}
.fit-system-card::before,
.lux-step-card::before,
.health-mini-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 4px;
  background: var(--theme-gradient);
  opacity: .85;
}
.fit-system-card:hover,
.lux-step-card:hover,
.health-mini-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212,95,142,.30);
  box-shadow: var(--theme-shadow-md);
}
.fit-system-card span,
.lux-step-card span,
.health-mini-card span {
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.fit-system-card h3,
.lux-step-card h3,
.health-mini-card h3 {
  margin-top: 14px;
  color: var(--theme-text);
  font-size: 32px;
  line-height: 1;
}
.fit-system-card p,
.lux-step-card p,
.health-mini-card p { margin-top: 12px; font-size: 14px; }
.fit-system-card--dark,
.lux-step-card--dark,
.health-mini-card--active {
  background: linear-gradient(135deg, #3f4853, #65717c);
  border-color: rgba(255,255,255,.08);
}
.fit-system-card--dark span,
.fit-system-card--dark h3,
.fit-system-card--dark p,
.lux-step-card--dark span,
.lux-step-card--dark h3,
.lux-step-card--dark p,
.health-mini-card--active span,
.health-mini-card--active h3,
.health-mini-card--active p { color: #fff; }
.fit-system-card--dark::before,
.lux-step-card--dark::before,
.health-mini-card--active::before { background: #fff; opacity: .22; }

.fit-fixed {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  padding: 112px 0;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(255,255,255,.90) 0%, rgba(255,255,255,.72) 42%, rgba(212,95,142,.20) 100%),
    url('../images/why-choose-us.webp');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
.fit-fixed::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(212,95,142,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(212,95,142,.08) 1px, transparent 1px);
  background-size: 38px 38px;
  pointer-events: none;
}
.fit-fixed .container { position: relative; z-index: 2; display: flex; justify-content: flex-start; }
.fit-fixed__content {
  width: min(100%, 820px);
  padding: 48px;
  border: 1px solid rgba(217,225,232,.96);
  border-radius: 12px;
  background: rgba(255,255,255,.86);
  box-shadow: var(--theme-shadow-lg);
  backdrop-filter: blur(10px);
}
.fit-fixed__content .site-label { color: var(--theme-primary); }
.fit-fixed__content h2 { color: var(--theme-text); }
.fit-fixed__content p { max-width: 720px; margin: 18px 0 0; }
.fit-fixed__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
  margin-top: 30px;
}
.fit-fixed__list div {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border: 1px solid var(--theme-border);
  border-radius: 7px;
  background: #fff;
  color: var(--theme-graphite);
  font-weight: 800;
  text-align: center;
}

.site-products,
.site-shop-main,
.prod-mid-sec,
.site-contact-main,
.site-legal-content,
.site-thankyou-main,
.site-checkout-main {
  background: linear-gradient(180deg, #ffffff, #f4f6f8);
}
.site-products__top { align-items: flex-end; }
.s2box,
.site-shop-card,
.prd-details,
#cartBox,
.frm_con_bgcolr,
.site-legal-shell,
.site-thankyou-shell,
.site-contact-showcase,
.site-ingredients-card,
.site-ingredients-intro,
.site-legal-card,
.site-thankyou-card,
.site-thankyou-support,
.paywhirl-plan-selector,
.hulk_app .s1-p3,
.agreement-group,
.warranty-group,
.cart-terms,
.is_bill,
.shp-charge,
.cart-sb-totl,
.total-amt,
.site-contact-panel__item,
.site-thankyou-support__item {
  border-radius: 9px;
}
.s2box,
.site-shop-card,
.prd-details,
#cartBox,
.frm_con_bgcolr,
.site-legal-shell,
.site-thankyou-shell,
.site-contact-showcase,
.site-ingredients-card,
.site-ingredients-intro,
.site-legal-card,
.site-thankyou-card,
.site-thankyou-support,
.site-contact-panel {
  border-color: var(--theme-border);
  box-shadow: var(--theme-shadow-sm);
}
.s2list-bx,
.site-shop-card__image-wrap,
.prds-left,
.site-ingredients-card__media {
  border-radius: 9px 9px 0 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(120,191,233,.09), transparent 34%),
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(234,244,251,.86));
  border-color: var(--theme-border);
}
.s2list-text,
.site-shop-card__content { border-radius: 0 0 9px 9px; background: #fff; }
.s2prd-hding2,
.site-shop-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.s2prd-prc2,
.site-shop-card__price,
.price {
  color: var(--theme-primary);
  font-family: var(--font-display);
  font-weight: 900;
}
.slick-arrow {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background: var(--theme-graphite);
  border-color: var(--theme-graphite);
  box-shadow: var(--theme-shadow-sm);
}
.slick-arrow:hover { background: var(--theme-primary); border-color: var(--theme-primary); }
.slick-arrow::before { color: #fff; }

.site-shop-page,
.site-product-page,
.site-contact-page,
.site-legal-page,
.site-thankyou-page,
.site-checkout-page { background: var(--theme-bg); }
.site-shop-hero,
.site-product-hero,
.site-contact-hero,
.site-legal-hero,
.site-thankyou-hero,
.site-checkout-hero {
  min-height: 392px;
  background-position: center;
  background-size: cover;
}
.site-shop-hero::before,
.site-product-hero::before,
.site-contact-hero::before,
.site-legal-hero::before,
.site-thankyou-hero::before,
.site-checkout-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.76) 46%, rgba(212,95,142,.26) 100%);
  z-index: 0;
}
.site-shop-hero::after,
.site-product-hero::after,
.site-contact-hero::after,
.site-legal-hero::after,
.site-thankyou-hero::after,
.site-checkout-hero::after {
  background-image: linear-gradient(rgba(212,95,142,.10) 1px, transparent 1px), linear-gradient(90deg, rgba(212,95,142,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.site-shop-hero__content,
.site-product-hero__content,
.site-contact-hero__content,
.site-legal-hero__content,
.site-thankyou-hero__content,
.site-checkout-hero__content { z-index: 2; }
.site-shop-hero h1,
.site-product-hero h1,
.site-contact-hero h1,
.site-legal-hero h1,
.site-thankyou-hero h1,
.site-checkout-hero h1 {
  color: var(--theme-text);
  font-size: clamp(48px, 5vw, 78px);
  line-height: .94;
}
.site-shop-hero p,
.site-product-hero p,
.site-contact-hero p,
.site-thankyou-hero p,
.site-checkout-hero p { color: var(--theme-text-soft); }
.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-muted); }
.site-shop-breadcrumb a,
.site-product-breadcrumb a,
.site-contact-breadcrumb a,
.site-legal-breadcrumb a,
.site-thankyou-breadcrumb a,
.site-checkout-breadcrumb a { color: var(--theme-primary); }
.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 { color: var(--theme-primary); }

.prd-details { background: rgba(255,255,255,.94); }
.prd-dtl1,
.shipping_heading h3,
.sub_shipping_heading h3,
.site-contact-panel h2,
.site-thankyou-status h2,
.site-thankyou-support h2,
.site-ingredients-intro h2,
.site-ingredients-card__header h3 { font-family: var(--font-display); }
.form-select,
.paywhirl-plan select,
.cart_prod_qty select,
select,
input[type="text"],
input[type="email"],
textarea,
.page-checkout .label input,
.page-checkout .label select,
.page-checkout .label textarea {
  border-radius: 6px;
  border-color: var(--theme-border);
}
.form-select:focus,
.paywhirl-plan select:focus,
select:focus,
input:focus,
textarea:focus {
  border-color: var(--theme-primary);
  box-shadow: 0 0 0 4px rgba(212,95,142,.13);
}
.cart_hdr { background: var(--theme-graphite); color: #fff; }
.total-amt { background: var(--theme-gradient); color: #fff; }
.site-contact-media { border-radius: 12px; }
.site-contact-panel { border-radius: 9px; background: rgba(255,255,255,.92); }
.site-contact-panel__icon,
.site-footer__icon,
.site-thankyou-support__icon,
.site-thankyou-status__icon {
  border-radius: 6px;
  background: var(--theme-gradient);
  color: #fff;
}
.site-legal-topbar__item { border-radius: 7px; }
.site-legal-topbar__item span,
.site-legal-topbar__item strong { display: block; line-height: 1.35; }
.site-legal-topbar__item span { margin-bottom: 5px; }
.ingdnts_img { border-radius: 8px; }
.site-product-gallery__slide,
.site-product-gallery__label,
.site-product-gallery .slick-dots button,
.site-product-gallery .slick-dots .slick-active button { border-radius: 6px; }
.site-ingredients-card__header { background: linear-gradient(135deg, #fff, #fff0f6); }

.site-footer {
  background:
    radial-gradient(circle at 14% 0%, rgba(120,191,233,.20), transparent 28%),
    linear-gradient(135deg, #3f4853, #303741);
  color: rgba(255,255,255,.76);
}
.site-footer::before { border-radius: 0; background: radial-gradient(circle, rgba(120,191,233,.24), transparent 70%); }
.site-footer__logo { filter: brightness(0) invert(1); }
.site-footer__kicker { color: #b9e4f8; }
.site-footer h4 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 28px;
}
.site-footer a:hover { color: #b9e4f8; }
.site-footer__bottom { background: rgba(0,0,0,.20); }

@keyframes carmineGridMove {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 126px 84px, 126px 84px; }
}
@keyframes carmineEnergySlide {
  0%, 100% { transform: skewX(-22deg) rotate(-10deg) translateX(0); }
  50% { transform: skewX(-22deg) rotate(-10deg) translateX(34px); }
}
@keyframes carmineLineDrift {
  0%, 100% { transform: skewX(-22deg) rotate(-10deg) translateX(0); opacity: .28; }
  50% { transform: skewX(-22deg) rotate(-10deg) translateX(26px); opacity: .46; }
}
@keyframes carmineLayerIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes carmineStripePulse {
  0%, 100% { transform: skewY(-4deg) translateX(0); opacity: .90; }
  50% { transform: skewY(-4deg) translateX(18px); opacity: .98; }
}

@media (max-width: 1024px) {
  .carmine-hero__masthead,
  .carmine-hero__bottom-row,
  .fit-system__top,
  .prod-spec,
  .site-thankyou-support { grid-template-columns: 1fr; }
  .fit-hero.fit-hero--carmine-campaign { min-height: auto; padding: 116px 0 62px; }
  .carmine-hero__title-block h1 { font-size: clamp(54px, 12vw, 96px); }
  .carmine-hero__editorial-stage { grid-template-columns: 1fr; }
  .carmine-hero__benefit,
  .carmine-hero__benefit--top,
  .carmine-hero__benefit--bottom { min-height: auto; transform: none; }
  .carmine-hero__benefit:hover,
  .carmine-hero__benefit--top:hover,
  .carmine-hero__benefit--bottom:hover { transform: translateY(-4px); }
  .carmine-hero__side-note { position: relative; top: auto; right: auto; width: 100%; }
  .carmine-hero__image-wrap,
  .carmine-hero__image-wrap img { min-height: 360px; height: 360px; }
  .fit-system__cards,
  .site-shop-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .site-nav-wrap { min-height: 76px; }
  .cmenu {
    inset: 76px 0 auto 0;
    background: rgba(255,255,255,.98);
    border-bottom-color: var(--theme-border);
    box-shadow: var(--theme-shadow-md);
  }
  .cmenu ul li a { color: var(--theme-graphite); }
  .carmine-hero__topline { align-items: flex-start; flex-direction: column; }
  .fit-hero--carmine-campaign .fit-hero__stats,
  .fit-system__cards,
  .fit-fixed__list,
  .site-shop-grid,
  .site-legal-topbar,
  .site-thankyou-grid,
  .site-footer__top { grid-template-columns: 1fr; }
  .fit-system,
  .fit-fixed,
  .site-products,
  .site-shop-main,
  .prod-mid-sec,
  .site-contact-main,
  .site-legal-content,
  .site-thankyou-main,
  .site-checkout-main { padding: 64px 0; }
  .fit-fixed { min-height: 540px; background-attachment: scroll; }
  .fit-fixed__content { padding: 34px; }
}
@media (max-width: 640px) {
  .fit-hero.fit-hero--carmine-campaign { padding: 104px 0 54px; }
  .carmine-hero__title-block h1 { font-size: clamp(48px, 15vw, 78px); }
  .carmine-hero__editorial-stage,
  .carmine-hero__bottom-row,
  .carmine-hero__intro-card { padding: 16px; }
  .fit-hero__actions { display: grid; grid-template-columns: 1fr; }
  .carmine-hero__image-wrap,
  .carmine-hero__image-wrap img { min-height: 300px; height: 300px; }
  .fit-fixed__content { padding: 26px; text-align: left; }
  .fit-fixed__list div { justify-content: flex-start; text-align: left; }
  .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: 44px; }
}