/* Purple / grape / white theme */
:root {
  --theme-bg: #f7f4f8;
  --theme-surface: #ffffff;
  --theme-surface-soft: #eee8f0;
  --theme-surface-warm: #f3e8f1;
  --theme-border: #d8cedb;
  --theme-text: #2f2532;
  --theme-text-soft: #746b77;
  --theme-primary: #7b2f6d;
  --theme-primary-strong: #552048;
  --theme-primary-soft: #f3e8f1;
  --theme-accent: #a64a8b;
  --theme-accent-strong: #7f2f6d;
  --theme-accent-soft: #f3e8f1;
  --theme-gold: #a64a8b;
  --theme-white: #ffffff;
  --theme-gradient: linear-gradient(135deg, #a64a8b 0%, #7b2f6d 58%, #552048 100%);
  --theme-gradient-soft: linear-gradient(135deg, #ffffff 0%, #f3e8f1 52%, #eee8f0 100%);
  --theme-radius-xs: 14px;
  --theme-radius-sm: 20px;
  --theme-radius-md: 28px;
  --theme-radius-lg: 38px;
  --theme-radius-xl: 56px;
  --theme-shadow-sm: 0 14px 34px rgba(47, 37, 50, 0.08);
  --theme-shadow-md: 0 24px 62px rgba(47, 37, 50, 0.13);
  --theme-shadow-lg: 0 34px 86px rgba(47, 37, 50, 0.16);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, 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.86);
  border-bottom: 1px solid rgba(216, 206, 219, 0.72);
  box-shadow: 0 12px 34px rgba(123, 47, 109, 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(123, 47, 109, 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(123, 47, 109, 0.24);
}
.health-btn--secondary,
.cont-shop {
  background: rgba(255, 255, 255, 0.82);
  color: var(--theme-primary-strong) !important;
  border: 1px solid rgba(216, 206, 219, 0.92);
  box-shadow: 0 14px 30px rgba(123, 47, 109, 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(123, 47, 109, 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: #d35f72;
  background: rgba(211, 95, 114, 0.08);
  box-shadow:
    0 0 0 4px rgba(211, 95, 114, 0.13),
    0 12px 28px rgba(123, 47, 109, 0.1);
  animation: healthShake 0.42s ease;
}
.validation_error.error_span {
  display: block;
  width: 100%;
  margin-top: 10px;
  color: #b84458;
  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, #f7f4f8 0%, #f7f4f8 48%, #ffffff 100%);
}
.health-hero {
  position: relative;
  min-height: 820px;
  padding: 152px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 14% 18%,
      rgba(243, 232, 241, 0.82),
      transparent 28%
    ),
    radial-gradient(
      circle at 76% 18%,
      rgba(255, 255, 255, 0.9),
      transparent 24%
    ),
    linear-gradient(135deg, #f7f4f8 0%, #f3e8f1 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(206, 140, 185, 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(166, 74, 139, 0.26),
    transparent 66%
  );
}
.health-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(123, 47, 109, 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(166, 74, 139, 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(198, 125, 173, 0.18),
    transparent 70%
  );
  animation-delay: -4.2s;
}
.health-ring {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(123, 47, 109, 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: #552048;
}
.health-hero__content p {
  max-width: 590px;
  margin-top: 24px;
  font-size: 18px;
  color: #746b77;
}
.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(216, 206, 219, 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, 243, 245, 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(216, 206, 219, 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: #f7f4f8;
}
.health-bridge__shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  padding: 44px;
  border: 1px solid rgba(216, 206, 219, 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(243, 232, 241, 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: #552048;
}
.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, #f3e8f1);
  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, #f7f4f8, #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(166, 74, 139, 0.28),
    transparent 68%
  );
}
.health-routine__orb--two {
  right: -42px;
  bottom: -34px;
  width: 210px;
  height: 210px;
  background: radial-gradient(
    circle,
    rgba(198, 125, 173, 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, #f7f4f8);
}
.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(216, 206, 219, 0.9);
  border-radius: 34px 34px 20px 20px;
  background: radial-gradient(
    circle at 50% 18%,
    #fff 0,
    #f3e8f1 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(216, 206, 219, 0.9);
  border-top: 0;
  border-radius: 0 0 34px 34px;
  background: rgba(255, 255, 255, 0.86);
  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: #f7f4f8;
}
.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(123, 47, 109, 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: #552048;
  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, #f3e8f1 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(166, 74, 139, 0.14);
}
.paywhirl_app,
.hulk_app {
  margin-top: 22px;
}
.paywhirl-plan-selector {
  padding: 20px;
  border: 1px solid var(--theme-border);
  border-radius: 22px;
  background: #f7f4f8;
}
.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: #f7f4f8;
  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, #f7f4f8, #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(216, 206, 219, 0.92);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  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: #f7f4f8;
}
.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: #f7f4f8;
  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: #f7f4f8;
}
.site-thankyou-support__right {
  display: grid;
  gap: 14px;
}

.site-footer {
  position: relative;
  background: #7b2f6d;
  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(166, 74, 139, 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: #552048;
  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(243, 232, 241, 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(123, 47, 109, 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(47, 37, 50, 0.05);
}

.page-checkout .label input::placeholder {
  color: rgba(47, 37, 50, 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, 244, 248, 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(47, 37, 50, 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, 244, 248, 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(123, 47, 109, 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(123, 47, 109, 0.28);
}

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

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

.page-checkout .checkout-field-error {
  display: block;
  width: 100%;
  margin-top: 7px;
  color: #b83b56;
  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% 4%, rgba(166, 74, 139, 0.14), transparent 30%),
    linear-gradient(180deg, #f7f4f8 0%, #ffffff 52%, #f7f4f8 100%);
}

.lux-hero {
  position: relative;
  padding: 56px 0 84px;
  background:
    radial-gradient(circle at 94% 12%, rgba(166, 74, 139, 0.16), transparent 27%),
    linear-gradient(180deg, #f7f4f8 0%, #ffffff 100%);
}

.lux-hero::before {
  content: "";
  position: absolute;
  top: 34px;
  left: max(22px, calc((100vw - 1240px) / 2));
  width: 88px;
  height: 88px;
  border: 1px solid rgba(123, 47, 109, 0.18);
  border-radius: 50%;
  pointer-events: none;
}

.lux-hero::after {
  content: "";
  position: absolute;
  right: max(22px, calc((100vw - 1240px) / 2));
  bottom: 32px;
  width: 132px;
  height: 16px;
  background-image: radial-gradient(circle, rgba(123, 47, 109, 0.38) 2px, transparent 2.5px);
  background-size: 16px 16px;
  pointer-events: none;
}

.lux-hero__panel {
  position: relative;
  z-index: 2;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  overflow: hidden;
  border: 1px solid rgba(123, 47, 109, 0.12);
  border-radius: 46px;
  background: var(--theme-primary-strong);
  box-shadow: 0 34px 90px rgba(47, 37, 50, 0.2);
}

.lux-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 76px 64px 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(215, 160, 197, 0.22), transparent 32%),
    linear-gradient(145deg, #552048 0%, #6b285d 54%, #7b2f6d 100%);
}

.lux-hero__content::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -112px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.lux-hero__content::after {
  content: "LUSH";
  position: absolute;
  right: -18px;
  bottom: -40px;
  color: rgba(255, 255, 255, 0.045);
  font-family: var(--font-display);
  font-size: 170px;
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 1;
  pointer-events: none;
}

.lux-hero__kicker {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;
  margin-bottom: 24px;
  color: #ffffff;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.lux-hero__kicker span {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.lux-hero__kicker span::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(255, 255, 255, 0.48);
}

.lux-hero__kicker em {
  color: #e9c8df;
  font-style: normal;
}

.lux-hero__content h1 {
  position: relative;
  z-index: 2;
  max-width: 610px;
  color: #ffffff;
  font-size: clamp(60px, 5.7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.lux-hero__content > p {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.75;
}

.lux-hero__actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.lux-hero__button {
  min-height: 56px;
  padding-right: 26px;
  padding-left: 26px;
}

.lux-hero__button--primary {
  background: #ffffff;
  color: var(--theme-primary-strong) !important;
  box-shadow: 0 18px 34px rgba(36, 14, 31, 0.24);
}

.lux-hero__button--primary:hover {
  background: #f7eef5;
  color: var(--theme-primary-strong) !important;
}

.lux-hero__button--secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lux-hero__button--secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.52);
  color: #ffffff !important;
}

.lux-hero__routine {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.lux-hero__routine-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  min-width: 0;
  padding-right: 16px;
}

.lux-hero__routine-item + .lux-hero__routine-item {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.lux-hero__routine-item > span {
  color: #d7a0c5;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.lux-hero__routine-item strong,
.lux-hero__routine-item small {
  display: block;
}

.lux-hero__routine-item strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1;
}

.lux-hero__routine-item small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
}

.lux-hero__media {
  position: relative;
  min-width: 0;
  min-height: 690px;
  overflow: hidden;
  background: #e8e2e9;
}

.lux-hero__media > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  object-position: 54% center;
  transform: scale(1.015);
  transition: transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.lux-hero__panel:hover .lux-hero__media > img {
  transform: scale(1.045);
}

.lux-hero__media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(85, 32, 72, 0.18), transparent 30%),
    linear-gradient(180deg, transparent 56%, rgba(47, 37, 50, 0.26) 100%);
  pointer-events: none;
}

.lux-hero__media-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(300px, calc(100% - 56px));
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 50px rgba(47, 37, 50, 0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.lux-hero__media-card span {
  display: block;
  color: var(--theme-accent);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lux-hero__media-card strong {
  display: block;
  margin-top: 8px;
  color: var(--theme-primary-strong);
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1;
}

.lux-hero__media-note {
  position: absolute;
  top: 28px;
  right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 40px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--theme-primary-strong);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(47, 37, 50, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.lux-hero__media-note span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--theme-accent);
  box-shadow: 0 0 0 5px rgba(166, 74, 139, 0.14);
}

@media (max-width: 1100px) {
  .lux-hero__panel {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
  }

  .lux-hero__content {
    padding: 66px 46px 50px;
  }

  .lux-hero__content h1 {
    font-size: clamp(54px, 6.6vw, 74px);
  }

  .lux-hero__routine-item small {
    display: none;
  }
}

@media (max-width: 900px) {
  .lux-hero {
    padding: 38px 0 64px;
  }

  .lux-hero__panel {
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 38px;
  }

  .lux-hero__content {
    padding: 62px 46px 48px;
  }

  .lux-hero__content h1 {
    max-width: 680px;
    font-size: clamp(54px, 10vw, 78px);
  }

  .lux-hero__content > p {
    max-width: 650px;
  }

  .lux-hero__media,
  .lux-hero__media > img {
    min-height: 560px;
  }

  .lux-hero__media > img {
    object-position: center 36%;
  }
}

@media (max-width: 620px) {
  .lux-hero {
    padding-top: 24px;
  }

  .lux-hero::before,
  .lux-hero::after {
    display: none;
  }

  .lux-hero__panel {
    border-radius: 28px;
  }

  .lux-hero__content {
    padding: 44px 24px 34px;
  }

  .lux-hero__content::after {
    right: -8px;
    bottom: -10px;
    font-size: 104px;
  }

  .lux-hero__kicker {
    margin-bottom: 20px;
  }

  .lux-hero__kicker span::after {
    width: 18px;
  }

  .lux-hero__content h1 {
    font-size: clamp(48px, 15vw, 64px);
    line-height: 0.94;
  }

  .lux-hero__content > p {
    margin-top: 22px;
    font-size: 15px;
  }

  .lux-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 28px;
  }

  .lux-hero__button {
    width: 100%;
  }

  .lux-hero__routine {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-top: 36px;
    padding-top: 20px;
  }

  .lux-hero__routine-item,
  .lux-hero__routine-item + .lux-hero__routine-item {
    padding: 0;
    border-left: 0;
  }

  .lux-hero__routine-item small {
    display: block;
  }

  .lux-hero__media,
  .lux-hero__media > img {
    min-height: 440px;
  }

  .lux-hero__media > img {
    object-position: 54% center;
  }

  .lux-hero__media-note {
    top: 18px;
    right: 18px;
  }

  .lux-hero__media-card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 19px 20px;
    border-radius: 20px;
  }

  .lux-hero__media-card strong {
    font-size: 27px;
  }
}

.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(243,232,241,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(47,37,50,0.74) 0%, rgba(47,37,50,0.58) 42%, rgba(247,244,248,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(47,37,50,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: #d7a0c5; }
.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-intro__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .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-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(216, 206, 219, 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(47, 37, 50, 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(243, 232, 241, 0.95), transparent 36%),
    linear-gradient(135deg, rgba(247, 244, 248, 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(166, 74, 139, 0.58);
  box-shadow: var(--theme-shadow-md);
}
.site-ingredients-card__header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(216, 206, 219, 0.72);
  background: linear-gradient(135deg, #f7f4f8, #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, #f3e8f1 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(47, 37, 50, 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(47, 37, 50, 0.32);
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 34px 86px rgba(47, 37, 50, 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: #d7a0c5;
}
.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;
  }
}