@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --theme-bg: #f8f3eb;
  --theme-surface: #fffdf9;
  --theme-surface-soft: #f6eee6;
  --theme-surface-warm: #efe2d5;
  --theme-border: #e5d4c4;
  --theme-text: #3d2d26;
  --theme-text-soft: #7a675f;
  --theme-primary: #a85f47;
  --theme-primary-strong: #7f3f2f;
  --theme-primary-soft: #ead2c4;
  --theme-accent: #d6a17f;
  --theme-accent-strong: #9b5a42;
  --theme-accent-soft: #fbf2eb;
  --theme-gold: #c6a15b;
  --theme-white: #fffdf9;
  --theme-gradient: linear-gradient(
    135deg,
    #8c4937 0%,
    #ae674d 56%,
    #c99772 100%
  );
  --theme-gradient-soft: linear-gradient(
    135deg,
    #fffdf9 0%,
    #f8f1e8 48%,
    #efe1d2 100%
  );
  --theme-radius-xs: 12px;
  --theme-radius-sm: 18px;
  --theme-radius-md: 26px;
  --theme-radius-lg: 36px;
  --theme-radius-xl: 52px;
  --theme-shadow-sm: 0 14px 34px rgba(168, 95, 71, 0.1);
  --theme-shadow-md: 0 24px 62px rgba(168, 95, 71, 0.14);
  --theme-shadow-lg: 0 34px 86px rgba(127, 63, 47, 0.18);
  --font-body: "Manrope", Arial, sans-serif;
  --font-display: "Manrope", Arial, sans-serif;
}* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(214, 161, 127, 0.20), transparent 32%),
    linear-gradient(180deg, #f8f3eb 0%, #ffffff 56%, #f6eee6 100%);
  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, 253, 249, 0.88);
  border-bottom: 1px solid rgba(229, 212, 196, 0.72);
  box-shadow: 0 12px 34px rgba(168, 95, 71, 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(168, 95, 71, 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(168, 95, 71, 0.24);
}
.health-btn--secondary,
.cont-shop {
  background: rgba(255, 255, 255, 0.82);
  color: var(--theme-primary-strong) !important;
  border: 1px solid rgba(229, 212, 196, 0.92);
  box-shadow: 0 14px 30px rgba(168, 95, 71, 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(168, 95, 71, 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(168, 95, 71, 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, #f8f3eb 0%, #f8f3eb 48%, #ffffff 100%);
}
.health-hero {
  position: relative;
  min-height: 820px;
  padding: 152px 0 82px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(219, 238, 234, 0.82) 0%, rgba(219, 238, 234, 0) 28%),
    radial-gradient(circle at 76% 18%, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 24%),
    linear-gradient(135deg, #f8f3eb 0%, #e9f2ed 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(214, 161, 127, 0.28) 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(15, 106, 98, 0.22),
    transparent 66%
  );
}
.health-hero__bg {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  pointer-events: none;
  background-image:
    radial-gradient(rgba(168, 95, 71, 0.10) 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(214, 161, 127, 0.42),
    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(219, 238, 234, 0.46),
    transparent 70%
  );
  animation-delay: -4.2s;
}
.health-ring {
  width: 132px;
  height: 132px;
  border: 1px solid rgba(168, 95, 71, 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: #3d2d26;
}
.health-hero__content p {
  max-width: 590px;
  margin-top: 24px;
  font-size: 18px;
  color: #7a675f;
}
.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(229, 212, 196, 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(223, 245, 255, 0.68)
  );
  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(229, 212, 196, 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: #f8f3eb;
}
.health-bridge__shell {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 44px;
  padding: 44px;
  border: 1px solid rgba(229, 212, 196, 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(219, 238, 234, 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: #3d2d26;
}
.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, #f5f2ea);
  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, #f8f3eb, #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(214, 161, 127, 0.28),
    transparent 68%
  );
}
.health-routine__orb--two {
  right: -42px;
  bottom: -34px;
  width: 210px;
  height: 210px;
  background: radial-gradient(
    circle,
    rgba(219, 238, 234, 0.46),
    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, #f8f3eb);
}
.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(229, 212, 196, 0.9);
  border-radius: 34px 34px 20px 20px;
  background: radial-gradient(
    circle at 50% 18%,
    #fff 0,
    #f6eee6 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(229, 212, 196, 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: #f8f3eb;
}
.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(168, 95, 71, 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: #3d2d26;
  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, #f6eee6 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(15, 106, 98, 0.16);
}
.paywhirl_app,
.hulk_app {
  margin-top: 22px;
}
.paywhirl-plan-selector {
  padding: 20px;
  border: 1px solid var(--theme-border);
  border-radius: 22px;
  background: #f8f3eb;
}
.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: #f8f3eb;
  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, #f8f3eb, #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(229, 212, 196, 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: #f8f3eb;
}
.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: #f8f3eb;
  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: #f8f3eb;
}
.site-thankyou-support__right {
  display: grid;
  gap: 14px;
}

.site-footer {
  position: relative;
  background: #3d2d26;
  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(214, 161, 127, 0.42),
    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: #ead2c4;
  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);
  }
}



/* Value Terrace home layout */
.terrace-home {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0%, rgba(214, 161, 127, 0.18), transparent 31%),
    linear-gradient(180deg, #fffdf9 0%, #f8f3eb 50%, #f6eee6 100%);
}

.terrace-hero {
  position: relative;
  min-height: 790px;
  padding: 76px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 16%, rgba(198, 161, 91, 0.14), transparent 26%),
    radial-gradient(circle at 91% 10%, rgba(168, 95, 71, 0.12), transparent 32%),
    linear-gradient(135deg, #fffdf9 0%, #f8f2e9 54%, #efe1d2 100%);
}
.terrace-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, rgba(255, 253, 249, 0.84));
  pointer-events: none;
}
.terrace-hero__wash {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(168, 95, 71, 0.08) 1px, transparent 1px),
    linear-gradient(118deg, transparent 0 46%, rgba(255, 255, 255, 0.58) 46% 48%, transparent 48% 100%);
  background-size: 34px 34px, 100% 100%;
  opacity: 0.52;
  animation: healthDrift 24s linear infinite;
}
.terrace-hero__glow,
.terrace-hero__curve {
  position: absolute;
  pointer-events: none;
}
.terrace-hero__glow {
  border-radius: 50%;
}
.terrace-hero__glow--one {
  width: 280px;
  height: 280px;
  left: -70px;
  top: 120px;
  background: radial-gradient(circle, rgba(198, 161, 91, 0.22), transparent 68%);
  animation: terraceFloatWide 10s ease-in-out infinite;
}
.terrace-hero__glow--two {
  width: 360px;
  height: 360px;
  right: -90px;
  bottom: 22px;
  background: radial-gradient(circle, rgba(168, 95, 71, 0.16), transparent 70%);
  animation: terraceFloatWide 12s ease-in-out infinite reverse;
}
.terrace-hero__curve {
  border: 1px solid rgba(168, 95, 71, 0.12);
  border-radius: 999px;
}
.terrace-hero__curve--one {
  width: 540px;
  height: 540px;
  left: -340px;
  bottom: -240px;
  animation: terraceSlowSpin 30s linear infinite;
}
.terrace-hero__curve--two {
  width: 460px;
  height: 460px;
  right: -260px;
  top: -150px;
  border-color: rgba(198, 161, 91, 0.2);
  animation: terraceSlowSpin 34s linear infinite reverse;
}
.terrace-hero .container {
  position: relative;
  z-index: 2;
}
.terrace-hero__shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(46px, 7vw, 96px);
  padding: clamp(34px, 5vw, 68px);
  border: 1px solid rgba(229, 212, 196, 0.92);
  border-radius: 54px;
  background: rgba(255, 253, 249, 0.76);
  box-shadow: 0 38px 100px rgba(127, 63, 47, 0.14);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.terrace-hero__shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(198, 161, 91, 0.22);
  border-radius: 42px;
  pointer-events: none;
}
.terrace-hero__content {
  position: relative;
  z-index: 3;
  padding: 10px 0;
}
.terrace-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  color: var(--theme-primary-strong);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.terrace-kicker::before {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, var(--theme-primary), var(--theme-gold));
}
.terrace-hero__content h1 {
  max-width: 660px;
  color: var(--theme-text);
  font-size: clamp(56px, 6.4vw, 92px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.075em;
}
.terrace-hero__content h1 em {
  display: block;
  color: var(--theme-primary);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}
.terrace-hero__lede {
  max-width: 580px;
  margin: 28px 0 0;
  color: var(--theme-text-soft);
  font-size: 17px;
  line-height: 1.75;
}
.terrace-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.terrace-hero__notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.terrace-hero__notes span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(229, 212, 196, 0.94);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.82);
  color: var(--theme-primary-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.terrace-hero__visual {
  position: relative;
  min-height: 590px;
}
.terrace-hero__image-frame {
  position: absolute;
  inset: 0 24px 30px 0;
  overflow: hidden;
  border: 12px solid rgba(255, 253, 249, 0.9);
  border-radius: 46% 54% 42% 58% / 40% 38% 62% 60%;
  background: #ead9ca;
  box-shadow: 0 34px 84px rgba(127, 63, 47, 0.2);
}
.terrace-hero__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.04), rgba(127, 63, 47, 0.18)),
    linear-gradient(90deg, rgba(198, 161, 91, 0.12), transparent 44%);
}
.terrace-hero__image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: sepia(0.08) saturate(0.88) contrast(0.98) brightness(1.04);
}
.terrace-hero__cupuacu-art {
  position: absolute;
  z-index: 4;
  right: -24px;
  bottom: -8px;
  width: min(48%, 300px);
  filter: drop-shadow(0 24px 28px rgba(127, 63, 47, 0.2));
  transform: rotate(4deg);
  animation: terraceFloatCard 7s ease-in-out infinite;
}
.terrace-hero__cupuacu-art svg {
  display: block;
  width: 100%;
  height: auto;
}
.terrace-hero__product-tile {
  position: absolute;
  z-index: 5;
  left: -34px;
  bottom: 18px;
  width: 190px;
  padding: 15px 15px 18px;
  border: 1px solid rgba(229, 212, 196, 0.94);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.9);
  box-shadow: 0 24px 56px rgba(127, 63, 47, 0.17);
  backdrop-filter: blur(16px);
}
.terrace-hero__product-tile span,
.terrace-hero__floating-copy span,
.terrace-strip__grid span,
.terrace-showcase__card span,
.terrace-editorial__steps span {
  color: var(--theme-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.terrace-hero__product-tile img {
  display: block;
  width: 100%;
  height: 150px;
  margin-top: 8px;
  object-fit: contain;
  filter: drop-shadow(0 18px 24px rgba(127, 63, 47, 0.14));
}
.terrace-hero__floating-copy {
  position: absolute;
  z-index: 5;
  left: 18px;
  top: 28px;
  max-width: 230px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 253, 249, 0.64);
  border-radius: 24px;
  background: rgba(127, 63, 47, 0.84);
  box-shadow: 0 24px 60px rgba(127, 63, 47, 0.2);
  backdrop-filter: blur(14px);
}
.terrace-hero__floating-copy strong {
  display: block;
  margin-top: 8px;
  color: #fffaf4;
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -0.03em;
}

.terrace-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
  padding-bottom: 84px;
}
.terrace-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(229, 212, 196, 0.86);
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--theme-shadow-md);
  backdrop-filter: blur(18px);
}
.terrace-strip__grid article {
  min-height: 170px;
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffdf9, #f6eee6);
}
.terrace-strip__grid strong {
  display: block;
  margin-top: 18px;
  color: #3d2d26;
  font-size: 20px;
  line-height: 1.2;
}
.terrace-strip__grid p {
  margin: 10px 0 0;
  font-size: 14px;
}

.terrace-editorial {
  padding: 18px 0 106px;
  background: linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
}
.terrace-editorial .container {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 68px;
}
.terrace-editorial__media {
  position: relative;
  height: 600px;
  padding: 14px;
  border-radius: 42px;
  background: #ffffff;
  border: 1px solid rgba(229, 212, 196, 0.9);
  box-shadow: var(--theme-shadow-lg);
  overflow: hidden;
}
.terrace-editorial__media::before {
  content: "";
  position: absolute;
  left: -36px;
  top: -36px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217, 184, 143, 0.22), transparent 68%);
}
.terrace-editorial__media img {
  position: relative;
  z-index: 2;
  border-radius: 30px;
  transition: transform 0.7s ease;
}
.terrace-editorial__media:hover img {
  transform: scale(1.035);
}
.terrace-editorial__content h2,
.terrace-showcase__intro h2 {
  color: #3d2d26;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.06em;
}
.terrace-editorial__content p,
.terrace-showcase__intro p {
  max-width: 620px;
  margin-top: 18px;
  font-size: 17px;
}
.terrace-editorial__steps {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
.terrace-editorial__steps div {
  padding: 20px 22px;
  border: 1px solid rgba(229, 212, 196, 0.92);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--theme-shadow-sm);
}
.terrace-editorial__steps strong {
  display: block;
  margin-top: 5px;
  color: #3d2d26;
  font-size: 18px;
}

.terrace-showcase {
  padding: 96px 0;
  background:
    radial-gradient(circle at 88% 10%, rgba(214, 161, 127, 0.22), transparent 32%),
    linear-gradient(180deg, #f8f3eb 0%, #ffffff 100%);
}
.terrace-showcase__intro {
  max-width: 760px;
  margin-bottom: 38px;
}
.terrace-showcase__cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(240px, 1fr));
  gap: 22px;
}
.terrace-showcase__card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(229, 212, 196, 0.9);
  background: #ffffff;
  box-shadow: var(--theme-shadow-sm);
}
.terrace-showcase__card--large {
  grid-row: 1 / span 2;
}
.terrace-showcase__card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(127, 63, 47, 0.72) 100%);
}
.terrace-showcase__card div {
  position: absolute;
  z-index: 2;
  left: 26px;
  right: 26px;
  bottom: 24px;
}
.terrace-showcase__card strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.18;
}
.terrace-showcase__card img {
  transition: transform 0.72s ease;
}
.terrace-showcase__card:hover img {
  transform: scale(1.06);
}
.terrace-products {
  background: linear-gradient(180deg, #fffdf9 0%, #f8f3eb 100%);
}

.motion-ready .terrace-hero__content,
.motion-ready .terrace-hero__visual,
.motion-ready .terrace-hero__product-tile,
.motion-ready .terrace-hero__floating-copy {
  animation-fill-mode: both;
}
.motion-ready .terrace-hero__content {
  animation: terraceRise 0.88s cubic-bezier(.2,.8,.2,1) 0.05s both;
}
.motion-ready .terrace-hero__visual {
  animation: terraceRevealScale 0.98s cubic-bezier(.2,.8,.2,1) 0.16s both;
}
.motion-ready .terrace-hero__product-tile {
  animation: terraceFloatCard 5.8s ease-in-out 1.1s infinite, terracePop 0.75s cubic-bezier(.2,.8,.2,1) 0.48s both;
}
.motion-ready .terrace-hero__floating-copy {
  animation: terraceFloatCard 6.4s ease-in-out 1.3s infinite reverse, terracePop 0.78s cubic-bezier(.2,.8,.2,1) 0.56s both;
}
.health-btn::after,
.s2btn2::after,
.site-product-btn::after,
.commonbtn::after,
.prod-clearcart::after,
.site-shop-card__btn::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::after,
.s2btn2:hover::after,
.site-product-btn:hover::after,
.commonbtn:hover::after,
.prod-clearcart:hover::after,
.site-shop-card__btn:hover::after {
  left: 118%;
}
.motion-ready .terrace-strip,
.motion-ready .terrace-editorial__media,
.motion-ready .terrace-editorial__content,
.motion-ready .terrace-showcase__intro,
.motion-ready .terrace-showcase__card,
.motion-ready .terrace-products .site-products__top,
.motion-ready .terrace-products .s2box {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.72s ease, transform 0.72s ease;
}
.motion-ready .terrace-strip.is-visible,
.motion-ready .terrace-editorial__media.is-visible,
.motion-ready .terrace-editorial__content.is-visible,
.motion-ready .terrace-showcase__intro.is-visible,
.motion-ready .terrace-showcase__card.is-visible,
.motion-ready .terrace-products .site-products__top.is-visible,
.motion-ready .terrace-products .s2box.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.motion-ready .terrace-showcase__card:nth-child(2),
.motion-ready .terrace-products .s2box:nth-child(2) { transition-delay: 0.08s; }
.motion-ready .terrace-showcase__card:nth-child(3),
.motion-ready .terrace-products .s2box:nth-child(3) { transition-delay: 0.16s; }

@keyframes terraceRise {
  from { opacity: 0; transform: translateY(34px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes terraceSlideIn {
  from { opacity: 0; transform: translateX(-26px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes terraceRevealScale {
  from { opacity: 0; transform: scale(0.96) translateY(22px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes terracePop {
  from { opacity: 0; transform: scale(0.92) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes terraceFloatCard {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -10px; }
}
@keyframes terraceFloatWide {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(18px, -18px, 0); }
}
@keyframes terraceSlowSpin {
  to { transform: rotate(360deg); }
}

@media (max-width: 1100px) {
  .terrace-hero__shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .terrace-hero__content {
    max-width: 760px;
  }
  .terrace-hero__visual {
    min-height: 620px;
  }
  .terrace-hero__image-frame {
    inset: 0 40px 30px 40px;
  }
  .terrace-hero__product-tile {
    left: 4px;
  }
  .terrace-editorial .container {
    grid-template-columns: 1fr;
  }
  .terrace-showcase__cards {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .terrace-showcase__card--large {
    grid-row: auto;
    min-height: 440px;
  }
}
@media (max-width: 820px) {
  .terrace-hero {
    min-height: auto;
    padding: 48px 0 82px;
  }
  .terrace-hero__shell {
    padding: 42px 28px;
    border-radius: 38px;
  }
  .terrace-hero__shell::before {
    border-radius: 29px;
  }
  .terrace-hero__content h1 {
    font-size: clamp(48px, 12vw, 68px);
  }
  .terrace-hero__visual {
    min-height: 500px;
  }
  .terrace-hero__image-frame {
    inset: 0 12px 26px 12px;
    border-width: 9px;
  }
  .terrace-hero__product-tile {
    left: -4px;
    bottom: 0;
    width: 160px;
  }
  .terrace-hero__product-tile img {
    height: 118px;
  }
  .terrace-hero__floating-copy {
    left: 20px;
    top: 20px;
    max-width: 220px;
  }
  .terrace-hero__cupuacu-art {
    right: -10px;
    width: min(48%, 240px);
  }
  .terrace-strip {
    margin-top: -28px;
    padding-bottom: 62px;
  }
  .terrace-strip__grid,
  .terrace-showcase__cards {
    grid-template-columns: 1fr;
  }
  .terrace-editorial,
  .terrace-showcase {
    padding: 62px 0;
  }
  .terrace-editorial__media,
  .terrace-showcase__card,
  .terrace-showcase__card--large {
    height: auto;
    min-height: 340px;
  }
  .terrace-editorial__media img {
    min-height: 340px;
  }
}
@media (max-width: 560px) {
  .terrace-hero {
    padding-top: 28px;
  }
  .terrace-hero__shell {
    padding: 34px 20px 28px;
    border-radius: 30px;
  }
  .terrace-hero__shell::before {
    inset: 9px;
    border-radius: 23px;
  }
  .terrace-hero__content h1 {
    font-size: clamp(44px, 13vw, 58px);
  }
  .terrace-hero__lede {
    font-size: 15px;
  }
  .terrace-hero__actions {
    display: grid;
  }
  .terrace-hero__visual {
    min-height: 410px;
  }
  .terrace-hero__image-frame {
    inset: 0 0 18px;
    border-radius: 42% 58% 44% 56% / 38% 40% 60% 62%;
  }
  .terrace-hero__floating-copy {
    left: 12px;
    right: 12px;
    top: 12px;
    max-width: none;
  }
  .terrace-hero__product-tile {
    display: none;
  }
  .terrace-hero__cupuacu-art {
    right: -12px;
    bottom: -8px;
    width: 54%;
  }
  .terrace-strip__grid {
    padding: 12px;
    border-radius: 26px;
  }
  .terrace-editorial__content h2,
  .terrace-showcase__intro h2 {
    font-size: 42px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .terrace-hero__wash,
  .terrace-hero__glow,
  .terrace-hero__curve,
  .motion-ready .terrace-hero__product-tile,
  .motion-ready .terrace-hero__floating-copy,
  .motion-ready .terrace-hero__content,
  .motion-ready .terrace-hero__visual,
  .terrace-hero__cupuacu-art {
    animation: none !important;
  }
  .motion-ready .terrace-strip,
  .motion-ready .terrace-editorial__media,
  .motion-ready .terrace-editorial__content,
  .motion-ready .terrace-showcase__intro,
  .motion-ready .terrace-showcase__card,
  .motion-ready .terrace-products .site-products__top,
  .motion-ready .terrace-products .s2box {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@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, 253, 249, 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(219, 238, 234, 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(168, 95, 71, 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(168, 95, 71, 0.05);
}

.page-checkout .label input::placeholder {
  color: rgba(32, 51, 66, 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, 252, 255, 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(168, 95, 71, 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, 243, 236, 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(168, 95, 71, 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(168, 95, 71, 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: #c94d68;
  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;
}

/* Product gallery / product + ingredients slider */
.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(229, 212, 196, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  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(168, 95, 71, 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(219, 238, 234, 0.82), transparent 36%),
    linear-gradient(135deg, rgba(247, 252, 255, 0.98), rgba(255, 255, 255, 0.94));
  box-shadow: var(--theme-shadow-sm);
}
.site-ingredients-intro h2 {
  color: #3d2d26;
  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.9);
  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(15, 106, 98, 0.55);
  box-shadow: var(--theme-shadow-md);
}
.site-ingredients-card__header {
  padding: 24px 26px 18px;
  border-bottom: 1px solid rgba(229, 212, 196, 0.72);
  background: linear-gradient(135deg, #f8f3eb, #fff);
}
.site-ingredients-card__header span {
  display: inline-flex;
  color: var(--theme-primary);
  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%, #fff 0, #f6eee6 42%, #fff 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(127, 63, 47, 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;
  }
}