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

:root {
  --bg: #eef4f3;
  --surface: #ffffff;
  --surface-soft: #f5fbfa;
  --surface-warm: #fff2eb;
  --nav-surface: #ffffff;
  --text: #17313a;
  --muted: #627983;
  --line: rgba(23, 49, 58, 0.11);
  --green: #145d67;
  --green-deep: #0d434b;
  --gold: #ff9269;
  --gold-deep: #f2644f;
  --rust: #ff6d57;
  --rust-deep: #cb473b;
  --shadow: 0 24px 70px rgba(30, 55, 62, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --header-offset: 90px;
  --header-offset-mobile: 84px;
  --brand-logo-width: clamp(300px, 20vw, 380px);
  --brand-logo-height: 72px;
  --brand-logo-mobile-width: 205px;
  --brand-logo-mobile-height: 50px;
  --footer-logo-width: clamp(300px, 22vw, 420px);
  --footer-logo-height: 104px;
  --footer-logo-mobile-width: 268px;
  --footer-logo-mobile-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 10% 8%, rgba(20, 93, 103, 0.14), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(255, 109, 87, 0.16), transparent 20%),
    linear-gradient(180deg, #fcfbf7 0%, var(--bg) 52%, #f8eee6 100%);
}

img {
  max-width: 100%;
  display: block;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.page-shell {
  min-height: 100vh;
  padding-top: var(--header-offset);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-surface);
  backdrop-filter: none;
  border-bottom: 1px solid rgba(32, 50, 38, 0.08);
  box-shadow: 0 10px 26px rgba(23, 49, 58, 0.04);
  transition: box-shadow 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: rgba(23, 49, 58, 0.1);
  box-shadow: 0 16px 32px rgba(23, 49, 58, 0.08);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: var(--brand-logo-width);
  min-width: 0;
  height: var(--brand-logo-height);
  flex: 0 0 auto;
  vertical-align: middle;
  overflow: hidden;
}

.brand-logo-image {
    margin-top: 15px;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
    transform: scale(2.80);
    transform-origin: left center;
}

.nav-links,
.hero-actions,
.hero-tags,
.check-list,
.footer-links,
.footer-meta,
.order-points,
  .auth-alt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.nav-links {
  justify-content: center;
  gap: 38px;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.nav-icon {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(23, 49, 58, 0.1);
  box-shadow: 0 8px 18px rgba(30, 55, 62, 0.08);
  color: var(--green);
  transition: transform 0.24s ease, border-color 0.24s ease, color 0.24s ease;
}

.nav-icon svg {
  width: 20px;
  height: 20px;
}

.nav-icon:hover {
  transform: translateY(-2px);
  color: var(--rust);
  border-color: rgba(255, 109, 87, 0.28);
}

.nav-links a:hover,
.footer-links a:hover,
.footer-meta a:hover,
.auth-alt a:hover {
  color: var(--rust);
}

.button,
.button-outline,
.button-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--rust), var(--rust-deep));
  box-shadow: 0 16px 30px rgba(141, 66, 25, 0.22);
}

.button-outline {
  background: #fff;
  border: 1px solid rgba(32, 50, 38, 0.12);
  color: var(--rust-deep);
  box-shadow: 0 12px 24px rgba(140, 92, 37, 0.08);
}

.button-link {
  min-height: auto;
  padding: 0;
  border-radius: 0;
  color: var(--green);
}

.button:hover,
.button-outline:hover,
.button-link:hover {
  transform: translateY(-2px);
}

.button-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 0;
  background: linear-gradient(135deg, #1fa855, #118743);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(17, 135, 67, 0.24);
  transition: transform 0.24s ease, box-shadow 0.24s ease, filter 0.24s ease;
}

.button-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(17, 135, 67, 0.28);
  filter: saturate(1.03);
}

.button-outline.is-disabled {
  pointer-events: none;
  opacity: 0.68;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 93, 103, 0.1);
  color: var(--green);
  font-size: 0.92rem;
  font-weight: 800;
}

.eyebrow::before {
  content: "✦";
  color: var(--gold-deep);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.7rem, 5.7vw, 5rem);
}

h2 {
  font-size: clamp(1.95rem, 4vw, 3rem);
}

h3 {
  font-size: 1.35rem;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.hero {
  padding: 54px 0 34px;
}

.hero-grid,
.split-grid,
.nutrition-grid,
.contact-grid,
.footer-grid,
.auth-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.8fr 0.95fr;
}

.hero-grid {
  align-items: center;
}

.hero-copy p {
  margin-top: 22px;
  max-width: 58ch;
}

.hero-eyebrow {
  padding: 8px 12px;
  font-size: 0.82rem;
  background: rgba(247, 187, 64, 0.18);
  color: #b35e00;
}

.hero-title {
  max-width: 11.5ch;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
}

.hero-title-accent {
  color: #d97a05;
}

.hero-subtitle {
  max-width: 44ch;
  font-size: clamp(0.98rem, 1.25vw, 1.14rem);
  color: #536a74;
}

.hero-actions {
  margin-top: 28px;
}

.hero-tags,
.hero-proof {
  margin-top: 24px;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-proof-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-proof-dots span {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(247, 187, 64, 0.18);
  color: #c06e06;
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-proof-copy {
  display: grid;
  gap: 4px;
}

.hero-proof-copy strong {
  color: #183632;
  font-size: 1rem;
}

.hero-proof-copy span {
  color: #536a74;
  font-size: 0.95rem;
}

.tag {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 50, 38, 0.08);
  font-size: 0.92rem;
  font-weight: 700;
}

.mini-badge {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 238, 204, 0.62), transparent 18%),
    linear-gradient(180deg, #fffdf7 0%, #fff9ef 100%);
  box-shadow: var(--shadow);
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slider-track {
  position: relative;
  min-height: 620px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-float {
  position: absolute;
  z-index: 2;
  max-width: 220px;
  padding: 18px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 34px rgba(14, 23, 18, 0.12);
  backdrop-filter: blur(14px) saturate(135%);
}

.hero-float::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 58%);
  pointer-events: none;
}

.hero-float strong {
  position: relative;
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
}

.hero-float p {
  position: relative;
  color: #5c717b;
}

.hero-float.top {
  top: 30px;
  right: 26px;
  background: linear-gradient(180deg, rgba(231, 246, 244, 0.94), rgba(203, 227, 223, 0.84));
  border-color: rgba(20, 93, 103, 0.18);
}

.hero-float.bottom {
  left: 26px;
  bottom: 30px;
  background: linear-gradient(180deg, rgba(255, 236, 223, 0.94), rgba(248, 214, 188, 0.84));
  border-color: rgba(201, 113, 71, 0.18);
}

.hero-float.top strong {
  color: #124952;
}

.hero-float.top p {
  color: #486670;
}

.hero-float.bottom strong {
  color: #74422d;
}

.hero-float.bottom p {
  color: #6e655d;
}

.hero-pack {
  position: absolute;
  inset: 42px 70px 60px 70px;
  display: grid;
  place-items: center;
}

.hero-pack-front {
  width: min(430px, 90%);
  filter: drop-shadow(0 28px 38px rgba(9, 16, 12, 0.3));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-pack-back {
  position: absolute;
  right: 8px;
  bottom: 36px;
  width: 180px;
  transform: rotate(10deg);
  filter: drop-shadow(0 16px 24px rgba(14, 23, 18, 0.22));
  transition: transform 0.45s ease, filter 0.45s ease;
}

.hero-slide-feature {
  position: relative;
  padding: 18px 18px 88px;
}

.hero-feature-stage {
  position: absolute;
  inset: 22px 26px 72px 26px;
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 74px 24px 84px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.38), transparent 22%),
    linear-gradient(145deg, #eeebee 0%, #c9c6cc 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 22px 38px rgba(27, 41, 53, 0.14);
}

.hero-feature-stage::after {
  display: none;
}

.hero-feature-main {
  position: relative;
  z-index: 1;
  width: min(76%, 380px);
  max-height: calc(100% - 12px);
  object-fit: contain;
  object-position: center center;
  filter: drop-shadow(0 26px 36px rgba(28, 38, 49, 0.22));
  transition: transform 0.45s ease;
}

.hero-slide-feature:hover .hero-feature-main {
  transform: scale(1.03);
}

.hero-feature-badge {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 76px;
  padding: 14px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(23, 49, 58, 0.08);
  box-shadow: 0 18px 30px rgba(19, 34, 42, 0.14);
}

.hero-feature-badge-top {
  top: 22px;
  left: 22px;
}

.hero-feature-badge-bottom {
  right: 22px;
  bottom: 22px;
  gap: 12px;
  max-width: 240px;
}

.hero-feature-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #d7f8df;
  color: #17a34a;
  font-size: 1.45rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.hero-feature-badge-copy {
  display: grid;
  gap: 4px;
}

.hero-feature-badge-copy span {
  color: #7a808d;
  font-size: 0.94rem;
}

.hero-feature-badge-copy strong {
  color: #0f1826;
  font-size: 1.05rem;
}

.hero-feature-badge-bottom strong {
  color: #d17016;
  font-size: 2rem;
  line-height: 0.95;
}

.hero-feature-badge-bottom span {
  color: #0f1826;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.35;
}

.hero-slide-photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px 30px 92px;
}

.hero-slide-image-wrap {
  position: relative;
  width: min(86%, 520px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-image-front {
  width: min(84%, 500px);
}

.hero-slide-image-back {
  width: min(72%, 430px);
}

.hero-slide-image {
  width: 100%;
  max-height: 470px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 24px 34px rgba(14, 23, 18, 0.22));
  transition: transform 0.45s ease;
}

.hero-slide-photo:hover .hero-slide-image {
  transform: scale(1.03);
}

.hero-slide-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 248, 239, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 16px 28px rgba(14, 23, 18, 0.12);
  backdrop-filter: blur(10px);
}

.hero-slide-caption strong {
  color: #17474b;
}

.hero-slide-caption p {
  color: #5f6d72;
}

.hero-slide-caption-dark {
  background: rgba(239, 247, 246, 0.9);
}

.hero-slider-controls {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 22px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hero-slider-arrow {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  cursor: pointer;
  box-shadow: 0 12px 20px rgba(12, 26, 32, 0.12);
  transition: transform 0.2s ease, color 0.2s ease;
}

.hero-slider-arrow:hover {
  transform: translateY(-2px);
  color: var(--rust-deep);
}

.hero-slider-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}

.hero-slider-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, width 0.2s ease;
}

.hero-slider-dot.is-active {
  width: 26px;
  background: #fff8ed;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.metric-card,
.content-card,
.step-card,
.product-card,
.story-card,
.idea-card,
.faq-item,
.panel,
.auth-card,
.auth-side {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(74, 57, 24, 0.06);
}

.metric-card {
  padding: 18px 16px;
  text-align: center;
}

.metric-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.93rem;
}

.metric-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(20, 93, 103, 0.12);
  font-weight: 800;
  color: var(--green);
}

.section {
  padding: 44px 0;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-head p {
  max-width: 56ch;
}

.cards-3,
.cards-4,
.products-grid,
.stories-grid,
.ideas-grid,
.faq-grid {
  display: grid;
  gap: 20px;
}

.cards-3,
.stories-grid,
.ideas-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.cards-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.products-grid-featured {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.content-card,
.step-card,
.product-card,
.story-card,
.idea-card,
.faq-item,
.panel {
  padding: 26px;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.icon-box,
.step-number {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: rgba(20, 93, 103, 0.12);
  color: var(--green);
  font-weight: 800;
}

.content-card strong,
.step-card strong,
.product-card strong,
.story-card strong,
.idea-card strong,
.panel strong {
  display: block;
  margin: 16px 0 10px;
}

.difference-media,
.product-spotlight,
.nutrition-visual {
  position: relative;
  overflow: hidden;
  min-height: 520px;
}

.difference-media {
  background:
    radial-gradient(circle at 24% 18%, rgba(20, 93, 103, 0.18), transparent 16%),
    linear-gradient(145deg, #f4fbfa, #ffe0cc);
}

.difference-media img,
.product-spotlight img {
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: min(390px, 82%);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.difference-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  max-width: 220px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(32, 50, 38, 0.08);
}

.detail-list,
.spec-list,
.contact-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.detail-list li,
.spec-list li,
.contact-list li {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.detail-list li span:first-child,
.spec-list li span:first-child,
.contact-list li span:first-child {
  color: var(--muted);
}

.steps-band {
  background:
    linear-gradient(180deg, rgba(20, 93, 103, 0.08), rgba(20, 93, 103, 0));
}

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

.step-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: rgba(255, 109, 87, 0.12);
  right: -30px;
  bottom: -30px;
}

.products-grid .product-card:first-child {
  border: 1px solid rgba(20, 93, 103, 0.18);
}

.product-thumb {
  min-height: 280px;
  margin-bottom: 10px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(20, 93, 103, 0.12), transparent 18%),
    linear-gradient(145deg, #f5fbfa, #ffe8da);
}

.product-thumb img {
  width: min(250px, 100%);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.coming-card {
  background: linear-gradient(180deg, #fffdf9, #fff6ef);
}

.coming-icon {
  width: 74px;
  height: 74px;
  margin: 4px auto 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 109, 87, 0.12);
  color: var(--rust);
  font-size: 2rem;
  font-weight: 700;
}

.coming-state {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.coming-copy {
  margin-top: auto;
  padding-top: 22px;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(20, 93, 103, 0.08);
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 700;
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 18px;
}

.price-now {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green);
}

.price-old {
  color: var(--muted);
  text-decoration: line-through;
}

.nutrition-grid {
  align-items: stretch;
}

.nutrition-visual {
  background:
    radial-gradient(circle at 20% 16%, rgba(20, 93, 103, 0.18), transparent 18%),
    linear-gradient(145deg, #f6fbfa, #ffd9c6);
}

.nutrition-visual img {
  width: min(360px, 76%);
  margin: 28px auto 0;
  border-radius: 26px;
  box-shadow: 0 18px 28px rgba(117, 84, 23, 0.18);
  transition: transform 0.45s ease, filter 0.45s ease;
}

.visual-caption {
  padding: 0 24px 26px;
}

.table-wrap {
  margin-top: 22px;
  overflow-x: auto;
  border-radius: 18px;
  border: 1px solid var(--line);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--surface-soft);
}

th,
td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

th {
  background: rgba(20, 93, 103, 0.08);
  font-size: 0.94rem;
}

.story-card,
.idea-card {
  min-height: 100%;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 290px;
}

.story-card::after {
  content: "";
  position: absolute;
  inset: auto -10px -20px auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: rgba(255, 109, 87, 0.12);
}

.idea-card .small-tag {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.cta-band {
  padding: 34px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #103d48 0%, #176872 34%, #ff7659 76%, #ffb56a 100%);
  box-shadow: var(--shadow);
}

.cta-band h2,
.cta-band p,
.cta-band .order-points span {
  color: #fffaf0;
}

.cta-band .button-outline {
  background: rgba(255, 255, 255, 0.92);
}

.contact-grid .panel,
.newsletter-panel,
.contact-panel {
  height: 100%;
}

.newsletter-panel input,
.contact-panel input,
.contact-panel select,
.contact-panel textarea,
.auth-card input,
.auth-card select,
 .auth-card textarea,
 .checkout-card input,
 .checkout-card select,
 .checkout-card textarea {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(32, 50, 38, 0.12);
  background: #fff;
  padding: 0 16px;
  color: var(--text);
}

.contact-panel textarea,
 .auth-card textarea,
 .checkout-card textarea {
  min-height: 128px;
  padding: 14px 16px;
  resize: vertical;
}

.checkout-card input:focus,
.checkout-card select:focus,
.checkout-card textarea:focus {
  outline: 3px solid rgba(20, 93, 103, 0.12);
  border-color: rgba(20, 93, 103, 0.28);
}

.newsletter-form,
.form-grid {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.newsletter-inline,
.form-row {
  display: grid;
  gap: 12px;
}

.newsletter-inline {
  grid-template-columns: 1fr auto;
}

.form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(203, 71, 59, 0.5);
  background: #fff8f6;
  outline: 3px solid rgba(203, 71, 59, 0.08);
}

.field-error {
  min-height: 1.1em;
  color: #a3362d;
  font-size: 0.84rem;
  font-weight: 700;
  line-height: 1.45;
}

.group-error {
  min-height: 0;
  margin-top: 4px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin-top: 14px;
}

.footer {
  padding: 14px 0 42px;
}

.footer-wrap {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #143d46, #1c5560);
  box-shadow: var(--shadow);
}

.footer-wrap h3,
.footer-wrap p,
.footer-wrap a {
  color: rgba(255, 250, 240, 0.88);
}

.footer-links,
.footer-meta {
  margin-top: 18px;
}

.footer-title {
  margin-bottom: 14px;
  font-size: 1.05rem;
}

.footer-list {
  display: grid;
  gap: 12px;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 250, 240, 0.88);
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-icon {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fffaf0;
  transition: transform 0.24s ease, background 0.24s ease, border-color 0.24s ease;
}

.social-icon svg {
  width: 20px;
  height: 20px;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer-note {
  margin-top: 18px;
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.94rem;
}

.footer.footer-compact {
  padding: 14px 0 24px;
  margin-top: 18px;
  background: transparent;
  border-top: 0;
}

.footer-compact-wrap {
  padding: 34px 34px 22px;
  display: grid;
  gap: 28px;
  border-radius: 30px;
  background: linear-gradient(145deg, #173f40 0%, #0f3438 100%);
  box-shadow: 0 24px 46px rgba(10, 30, 34, 0.18);
}

.footer-rich-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.15fr;
  gap: 34px;
}

.footer-brand-block {
  max-width: 420px;
}

.footer-brandmark {
  display: inline-flex;
  align-items: center;
  width: var(--footer-logo-width);
  height: var(--footer-logo-height);
  text-decoration: none;
  overflow: hidden;
}

.footer-brand-logo-image {
    width: 24vw;
    max-width: 265px;
    min-width: 214px;
    height: auto;
    object-fit: contain;
    object-position: left center;
}

.footer-brand-copy {
  margin-top: 18px;
  display: grid;
  gap: 6px;
}

.footer-brand-copy p,
.footer-contact-block p {
  color: rgba(244, 250, 249, 0.92);
  font-size: 0.98rem;
  line-height: 1.45;
}

.footer-compact-copy {
  color: rgba(244, 250, 249, 0.9);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.footer-col-title {
  margin-bottom: 18px;
  color: #f7fbfb;
  font-size: 1rem;
  font-weight: 700;
}

.footer-rich-list {
  display: grid;
  gap: 12px;
}

.footer-rich-list a,
.footer-rich-list span,
.footer-contact-block a {
  color: rgba(244, 250, 249, 0.92);
  text-decoration: none;
  font-size: 0.96rem;
  line-height: 1.45;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.footer-contact-block {
  display: grid;
  gap: 6px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f6fbfb;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(210, 229, 227, 0.16);
  background: rgba(210, 229, 227, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: rgba(210, 229, 227, 0.16);
  border-color: rgba(210, 229, 227, 0.28);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-social-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-compact-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.footer-compact-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(187, 214, 209, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-compact-links a {
  color: rgba(244, 250, 249, 0.92);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
  transition: opacity 0.2s ease, color 0.2s ease;
}

.footer-rich-list a:hover,
.footer-contact-block a:hover,
.footer-compact-links a:hover {
  color: #ffffff;
  opacity: 0.9;
}

.legal-shell {
  padding: 42px 0 54px;
}

.legal-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(30, 55, 62, 0.08);
}

.legal-card h1 {
  font-size: clamp(2.1rem, 4vw, 3.5rem);
}

.legal-card h2 {
  margin-top: 26px;
  font-size: clamp(1.3rem, 3vw, 1.9rem);
}

.legal-card p,
.legal-card li {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.legal-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.auth-page {
  display: grid;
  place-items: center;
  min-height: 100vh;
  padding: 30px 0;
}

.auth-side,
.auth-card {
  padding: 30px;
}

.auth-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(252, 248, 242, 0.96));
}

.auth-card > * {
  position: relative;
  z-index: 1;
}

.auth-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(20, 93, 103, 0.08), transparent 70%);
  right: -80px;
  top: -90px;
}

.auth-side {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 240, 189, 0.18), transparent 18%),
    linear-gradient(145deg, #103d48 0%, #176872 34%, #ff7659 76%, #ffb56a 100%);
}

.hero-visual:hover .hero-pack-front {
  transform: scale(1.05);
}

.hero-visual:hover .hero-pack-back {
  transform: rotate(10deg) scale(1.06);
}

.video-feature {
  padding-top: 12px;
}

.video-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 28px;
  align-items: center;
}

.video-copy-panel {
  min-height: 100%;
}

.video-stage {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 240, 222, 0.5), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(255, 168, 107, 0.2), transparent 22%),
    linear-gradient(145deg, #133d48 0%, #1b6570 44%, #f7d6b4 100%);
}

.video-stage::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  top: -80px;
  right: -40px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.video-stage-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 20px;
  color: #f7faf8;
}

.video-stage-head p {
  color: rgba(247, 250, 248, 0.8);
}

.video-badge {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.video-shell {
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding: 10px;
  background: rgba(255, 250, 243, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 48px rgba(10, 23, 27, 0.18);
}

.brand-film-video {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 22px;
  background: #000;
}

.product-card[data-card-link] {
  cursor: pointer;
}

.product-card[data-card-link]:focus-visible {
  outline: 3px solid rgba(20, 93, 103, 0.22);
  outline-offset: 3px;
}

.product-page {
  padding-bottom: 12px;
}

.product-hero {
  padding-top: 42px;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 28px;
  align-items: start;
}

.product-gallery-card,
.product-info-card {
  min-height: 100%;
}

.product-gallery-card {
  overflow: hidden;
}

.product-gallery-stage {
  position: relative;
  min-height: 560px;
  padding: 34px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 241, 229, 0.5), transparent 22%),
    linear-gradient(145deg, #fff7ef 0%, #fff1df 48%, #f7dfcb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-stage-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 1;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--green-deep);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(23, 49, 58, 0.08);
}

.product-gallery-main {
  width: min(100%, 540px);
  max-height: 540px;
  object-fit: contain;
  filter: drop-shadow(0 24px 34px rgba(15, 20, 14, 0.18));
  transition: transform 0.35s ease;
}

.product-gallery-stage:hover .product-gallery-main {
  transform: scale(1.03);
}

.product-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.product-thumb-button {
  padding: 10px;
  border: 1px solid rgba(23, 49, 58, 0.1);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 24px rgba(23, 49, 58, 0.06);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-thumb-button img {
  width: 100%;
  height: 94px;
  object-fit: contain;
  display: block;
}

.product-thumb-button:hover,
.product-thumb-button.is-active {
  transform: translateY(-2px);
  border-color: rgba(20, 93, 103, 0.26);
  box-shadow: 0 16px 30px rgba(23, 49, 58, 0.08);
}

.product-gallery-note {
  margin-top: 16px;
  color: #667981;
  font-size: 0.96rem;
}

.product-info-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-lead {
  font-size: 1.02rem;
  line-height: 1.8;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 24px;
  background: linear-gradient(145deg, #fff6ee, #fff1df);
  border: 1px solid rgba(211, 132, 77, 0.14);
}

.product-price-label {
  display: block;
  color: #846d60;
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-price-value {
  display: block;
  margin-top: 6px;
  color: #183632;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 0.96;
}

.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.product-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-cta-group > * {
  flex: 1 1 220px;
}

.product-trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-trust-strip span {
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(20, 93, 103, 0.08);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.product-meta-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-meta-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23, 49, 58, 0.08);
}

.product-meta-list li:last-child {
  border-bottom: 0;
}

.product-meta-list span {
  color: #65767d;
}

.product-meta-list strong {
  color: #193634;
  text-align: right;
}

.product-meta-list-wide strong {
  max-width: 58%;
}

.product-contact-note {
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(20, 93, 103, 0.07);
  border: 1px solid rgba(20, 93, 103, 0.1);
}

.product-contact-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-deep);
}

.product-contact-note p {
  color: #5f7279;
}

.product-video-panel {
  min-height: 100%;
}

.products-page {
  background:
    radial-gradient(circle at 10% 0%, rgba(20, 93, 103, 0.08), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #fff6ef 100%);
}

.products-hero {
  padding-top: 32px;
}

.products-showcase {
  background:
    radial-gradient(circle at 14% 16%, rgba(20, 93, 103, 0.12), transparent 22%),
    linear-gradient(145deg, #eff7f6, #fff0e3 62%, #ffd1b2 100%);
}

.products-stage {
  min-height: 480px;
}

.products-copy-card {
  position: relative;
  overflow: hidden;
}

.products-copy-card::after {
  content: "";
  position: absolute;
  inset: auto -80px -90px auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 109, 87, 0.18), transparent 68%);
  pointer-events: none;
}

.products-price-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(20, 93, 103, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(251, 242, 235, 0.92));
}

.products-mini-points {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.products-mini-point {
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(20, 93, 103, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.products-mini-point strong {
  display: block;
  margin-bottom: 6px;
}

.products-rating-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.products-rating-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 93, 103, 0.1);
  color: var(--green-deep);
  font-size: 0.92rem;
  font-weight: 700;
}

.products-head-centered {
  align-items: end;
}

.products-story-band {
  padding-top: 10px;
}

.products-steps,
.products-reviews {
  background: rgba(255, 255, 255, 0.52);
}

.products-review-card {
  min-height: 100%;
}

.products-stars {
  display: inline-block;
  margin-bottom: 14px;
  color: #d06a17;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.difference-media:hover img {
  transform: translateX(-50%) scale(1.05);
}

.nutrition-visual:hover img {
  transform: scale(1.04);
}

.product-card:hover .product-thumb img {
  transform: scale(1.08);
}

.checkout-shell {
  padding: 42px 0 54px;
}

.checkout-hero-head {
  align-items: end;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.checkout-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 28px rgba(30, 55, 62, 0.08);
  padding: 28px;
}

.checkout-summary-card {
  position: sticky;
  top: 96px;
}

.checkout-summary-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.pill-accent {
  background: rgba(255, 109, 87, 0.14);
  color: var(--rust-deep);
  border: 1px solid rgba(255, 109, 87, 0.16);
}

.checkout-product {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  align-items: center;
}

.checkout-product-media {
  border-radius: 24px;
  padding: 16px;
  background:
    radial-gradient(circle at 18% 18%, rgba(20, 93, 103, 0.12), transparent 18%),
    linear-gradient(145deg, #f5fbfa, #ffe8da);
  overflow: hidden;
}

.checkout-product-media img {
  width: 100%;
  transition: transform 0.45s ease;
}

.checkout-card:hover .checkout-product-media img {
  transform: scale(1.06);
}

.secure-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.secure-strip-item {
  display: grid;
  gap: 6px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(245, 251, 250, 0.96), rgba(255, 242, 235, 0.9));
  border: 1px solid rgba(20, 93, 103, 0.1);
}

.secure-strip-item strong {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.secure-strip-item span,
.secure-strip-item a {
  color: var(--text);
  font-weight: 700;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.summary-row span {
  color: var(--muted);
}

.summary-row strong {
  color: var(--text);
}

.summary-row-total {
  padding-top: 6px;
  padding-bottom: 0;
  border-bottom: 0;
}

.summary-row-total span,
.summary-row-total strong {
  color: var(--text);
  font-size: 1.06rem;
  font-weight: 800;
}

.checkout-benefit-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.checkout-benefit-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(20, 93, 103, 0.09);
}

.checkout-benefit-item span {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-support-note {
  margin-top: 22px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(20, 93, 103, 0.1), rgba(255, 146, 105, 0.14));
  border: 1px solid rgba(255, 146, 105, 0.16);
}

.checkout-support-note p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.checkout-support-note span {
  color: var(--rust-deep);
  font-weight: 800;
}

.checkout-card-head p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.checkout-form {
  margin-top: 24px;
}

.form-section {
  display: grid;
  gap: 18px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(252, 248, 242, 0.94));
  border: 1px solid rgba(23, 49, 58, 0.08);
}

.form-section-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.form-section-head p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.form-step {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(20, 93, 103, 0.12);
  color: var(--green);
  font-weight: 800;
}

.checkout-two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkout-three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.payment-choice-list {
  display: grid;
  gap: 12px;
}

.payment-choice-list.is-invalid {
  padding: 14px;
  border-radius: 22px;
  background: #fff8f6;
  border: 1px solid rgba(203, 71, 59, 0.22);
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(20, 93, 103, 0.1);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
  cursor: pointer;
}

.payment-option:hover {
  transform: translateY(-1px);
  border-color: rgba(20, 93, 103, 0.18);
}

.payment-option:has(input:checked) {
  background: linear-gradient(145deg, rgba(245, 251, 250, 0.98), rgba(255, 247, 242, 0.96));
  border-color: rgba(20, 93, 103, 0.26);
  box-shadow: 0 12px 26px rgba(23, 49, 58, 0.08);
}

.payment-option input {
  margin-top: 5px;
  accent-color: var(--green);
}

.payment-option-copy {
  display: grid;
  gap: 4px;
}

.payment-option-copy strong {
  color: var(--text);
}

.payment-option-copy small {
  color: var(--muted);
  line-height: 1.55;
}

.payment-badge {
  align-self: start;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(20, 93, 103, 0.12);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
}

.checkout-consent {
  gap: 12px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--surface-soft);
  border: 1px solid rgba(20, 93, 103, 0.08);
}

.checkout-consent.is-invalid {
  background: #fff8f6;
  border-color: rgba(203, 71, 59, 0.22);
}

.checkout-consent input {
  margin-top: 5px;
}

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

.checkout-disclaimer {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.94rem;
}

.checkout-mini-note {
  display: grid;
  gap: 6px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 242, 235, 0.76);
  border: 1px solid rgba(255, 146, 105, 0.16);
}

.checkout-mini-note span {
  color: var(--muted);
  line-height: 1.6;
}

.checkout-status,
.auth-status {
  margin-bottom: 20px;
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: 0 12px 24px rgba(23, 49, 58, 0.08);
}

.checkout-status.is-loading,
.auth-status.is-loading {
  background: #eef7f5;
  border-color: rgba(20, 93, 103, 0.16);
  color: var(--green-deep);
}

.checkout-status.is-success,
.auth-status.is-success {
  background: #eef8f1;
  border-color: rgba(42, 139, 94, 0.22);
  color: #1d6c47;
}

.checkout-status.is-error,
.auth-status.is-error {
  background: #fff2ef;
  border-color: rgba(203, 71, 59, 0.2);
  color: #9f2f29;
}

.checkout-status.is-warning,
.auth-status.is-warning {
  background: #fff7eb;
  border-color: rgba(205, 134, 39, 0.22);
  color: #8f5910;
}

.auth-side::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  right: -60px;
  top: -80px;
}

.auth-side .brand,
.auth-side h1,
.auth-side p,
.auth-side .tag,
.auth-side .mini-badge {
  color: #fffaf0;
}

.auth-side .brand-mark {
  color: var(--text);
}

.auth-pack {
  position: absolute;
  right: 28px;
  bottom: 28px;
  width: min(320px, 56%);
  filter: drop-shadow(0 20px 28px rgba(11, 18, 13, 0.28));
}

.auth-copy {
  position: relative;
  z-index: 1;
  max-width: 480px;
}

.auth-card h1 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.auth-card-head p {
  margin: 16px 0 0;
}

.auth-form {
  margin-top: 24px;
}

.auth-feature-stack {
  display: grid;
  gap: 12px;
}

.auth-feature-tile {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.auth-feature-tile strong,
.auth-support-card strong {
  color: #fffaf0;
}

.auth-feature-tile span,
.auth-support-card p,
.auth-support-card a {
  color: rgba(255, 250, 240, 0.88);
}

.auth-support-card {
  display: grid;
  gap: 10px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 250, 240, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.auth-link-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.auth-link-row .button-outline {
  background: rgba(255, 255, 255, 0.92);
}

.input-shell {
  position: relative;
  display: grid;
  align-items: center;
}

.input-shell input {
  padding-right: 84px;
}

.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 93, 103, 0.1);
  color: var(--green);
  font-weight: 800;
  cursor: pointer;
}

.password-toggle:hover {
  background: rgba(20, 93, 103, 0.16);
}

.auth-inline-link {
  font-weight: 800;
  color: var(--rust);
}

.auth-utility-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.auth-helper-text {
  font-size: 0.94rem;
  line-height: 1.7;
}

.auth-switch {
  margin-top: 22px;
}

.password-strength {
  display: grid;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(20, 93, 103, 0.06);
  border: 1px solid rgba(20, 93, 103, 0.1);
}

.password-strength strong {
  font-size: 0.92rem;
}

.strength-meter {
  width: 100%;
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(20, 93, 103, 0.1);
}

.strength-meter-fill {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #cb473b, #ff9269);
  transition: width 0.24s ease, background 0.24s ease;
}

.small-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.checkbox-row {
  display: flex;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.95rem;
}

.checkbox-row.is-invalid {
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff8f6;
  border: 1px solid rgba(203, 71, 59, 0.2);
}

.checkbox-row input {
  margin-top: 5px;
}

.fade-up {
  animation: fadeUp 0.8s ease both;
}

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

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

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

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes mobileProductZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .nutrition-grid,
  .contact-grid,
  .footer-grid,
  .auth-grid,
  .checkout-grid,
  .video-feature-grid,
  .product-detail-grid {
    grid-template-columns: 1fr;
  }

  .cards-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cards-3,
  .products-grid,
  .stories-grid,
  .ideas-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .auth-side {
    min-height: 520px;
  }

  .checkout-summary-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: var(--header-offset-mobile);
  }

  .site-header {
    top: 0;
  }

  .container {
    width: min(100% - 20px, 1180px);
  }

  .nav {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
    grid-template-areas:
      "toggle brand actions"
      "links links links";
    align-items: center;
    gap: 10px 10px;
    min-height: 78px;
    padding: 10px 0 10px;
  }

  .nav-toggle {
    display: inline-flex;
    grid-area: toggle;
    width: 44px;
    height: 44px;
    border-radius: 14px;
    color: var(--green-deep);
  }

  .brand {
    grid-area: brand;
    width: min(100%, var(--brand-logo-mobile-width));
    height: var(--brand-logo-mobile-height);
    min-width: 0;
    justify-self: center;
  }

  .hero {
    padding-top: 30px;
  }

  .hero-title {
    max-width: 13ch;
    font-size: clamp(1.95rem, 8vw, 2.9rem);
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .nav-links {
    grid-area: links;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    overflow: visible;
    padding-top: 4px;
  }

  .nav-actions {
    grid-area: actions;
    width: auto;
    justify-content: flex-end;
    gap: 0;
  }

  .nav.is-open .nav-links {
    display: flex;
  }

  .nav-icon {
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 14px;
    background: transparent;
    box-shadow: none;
    color: var(--green-deep);
  }

  .nav-icon svg {
    width: 21px;
    height: 21px;
  }

  .nav-icon-cart {
    display: none;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(32, 50, 38, 0.08);
    box-shadow: 0 12px 24px rgba(23, 49, 58, 0.06);
  }

  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .metrics,
  .cards-4,
  .cards-3,
  .products-grid,
  .stories-grid,
  .ideas-grid,
  .faq-grid,
  .newsletter-inline,
   .form-row,
   .checkout-actions,
   .secure-strip,
   .checkout-three-col {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-slider-track {
    min-height: 560px;
  }

  .hero-slide {
    padding: 0;
  }

  .hero-slide.is-active {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .hero-slide-feature.is-active {
    display: block;
  }

  .hero-slide-feature {
    padding: 14px 14px 80px;
  }

  .hero-feature-stage {
    position: relative;
    inset: auto;
    min-height: 430px;
    margin-top: 72px;
    border-radius: 26px;
    padding: 74px 16px 86px;
  }

  .hero-feature-main {
    width: min(82%, 285px);
    max-height: calc(100% - 8px);
  }

  .hero-feature-badge {
    min-height: 64px;
    padding: 12px 14px;
    border-radius: 18px;
  }

  .hero-feature-badge-top {
    top: 12px;
    left: 12px;
    right: auto;
    max-width: min(220px, calc(100% - 28px));
  }

  .hero-feature-badge-bottom {
    right: 12px;
    left: auto;
    bottom: 12px;
    max-width: min(220px, calc(100% - 20px));
  }

  .hero-feature-badge-icon {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .hero-feature-badge-copy span {
    font-size: 0.82rem;
  }

  .hero-feature-badge-copy strong {
    font-size: 0.98rem;
  }

  .hero-feature-badge-bottom strong {
    font-size: 1.65rem;
  }

  .hero-feature-badge-bottom span {
    font-size: 0.86rem;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-proof-copy strong,
  .hero-proof-copy span {
    display: block;
  }

  .hero-pack {
    position: relative;
    inset: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding-top: 4px;
    order: 1;
  }

  .hero-pack-back {
    position: relative;
    width: min(150px, 52%);
    right: auto;
    bottom: auto;
    margin: -18px 0 0 auto;
    transform: rotate(6deg);
  }

  .hero-float {
    position: static;
    max-width: none;
    margin: 0;
  }

  .hero-float.top {
    order: 0;
  }

  .hero-float.bottom {
    order: 2;
  }

  .hero-slide-photo {
    justify-content: flex-start;
    padding: 20px 20px 84px;
  }

  .hero-slide-image-front,
  .hero-slide-image-back {
    width: min(100%, 320px);
  }

  .hero-slide-image {
    max-height: 330px;
  }

  .hero-slide-caption {
    left: 18px;
    right: 18px;
    bottom: 14px;
    padding: 16px 16px 14px;
    border-radius: 18px;
  }

  .hero-slider-controls {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .hero-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .hero-slider-dots {
    padding: 8px 14px;
    gap: 8px;
  }

  .difference-media,
  .product-spotlight,
  .nutrition-visual {
    min-height: auto;
  }

  .video-stage-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-hero {
    padding-top: 28px;
  }

  .product-gallery-stage {
    min-height: 420px;
    padding: 26px;
  }

  .product-gallery-main {
    width: min(100%, 420px);
    max-height: 400px;
  }

  .product-price-row,
  .product-meta-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .product-chip-row {
    justify-content: flex-start;
  }

  .product-meta-list strong,
  .product-meta-list-wide strong {
    max-width: none;
    text-align: left;
  }

  .video-shell {
    padding: 8px;
    border-radius: 22px;
  }

  .brand-film-video {
    border-radius: 18px;
  }

  .difference-media {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .difference-tag {
    position: static;
    max-width: none;
  }

  .difference-media img,
  .product-spotlight img {
    position: static;
    left: auto;
    bottom: auto;
    transform: none;
    width: min(290px, 82%);
    margin: 0 auto;
  }

  .nutrition-visual {
    padding: 18px;
  }

  .nutrition-visual img {
    width: min(290px, 82%);
    margin: 0 auto;
  }

  .visual-caption {
    padding: 16px 0 0;
  }

  .hero-actions,
  .footer-links,
  .footer-meta,
  .order-points,
  .auth-alt,
  .hero-tags {
    align-items: stretch;
  }

  .hero-actions > a,
  .newsletter-inline .button,
  .form-grid .button-outline,
  .form-grid .button,
  .button-link {
    width: 100%;
  }

  .detail-list li,
  .spec-list li,
  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-list li strong {
    text-align: left;
  }

  .newsletter-inline {
    grid-template-columns: 1fr;
  }

  .footer-compact-wrap {
    padding: 28px 22px 18px;
    gap: 24px;
  }

  .products-price-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-rich-top {
    grid-template-columns: 1fr 1fr;
    gap: 24px 28px;
  }

  .footer-compact-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .footer-compact-links {
    justify-content: flex-start;
    gap: 12px 18px;
  }

  .auth-page {
    padding: 20px 0;
  }

  .checkout-product {
    grid-template-columns: 1fr;
  }

  .checkout-card {
    padding: 22px;
  }

  .checkout-hero-head {
    gap: 16px;
  }

  .form-section {
    padding: 18px;
  }

  .form-section-head {
    flex-direction: column;
    gap: 12px;
  }

  .form-step {
    width: 36px;
    height: 36px;
  }

  .summary-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .checkout-status {
    padding: 14px 16px;
    border-radius: 18px;
  }

  .auth-feature-tile,
  .auth-support-card,
  .password-strength {
    padding: 16px;
  }

  .auth-link-row,
  .auth-utility-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .payment-option {
    grid-template-columns: auto 1fr;
    padding: 16px;
  }

  .payment-badge {
    grid-column: 2;
    justify-self: start;
  }

  .field-error {
    font-size: 0.8rem;
  }

  .auth-side {
    min-height: auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .footer-wrap,
  .legal-card,
  .panel,
  .auth-side,
  .auth-card,
  .content-card,
  .step-card,
  .product-card,
  .story-card,
  .idea-card,
  .faq-item {
    padding: 24px;
  }

  .auth-side {
    min-height: auto;
  }

  .auth-pack {
    position: static;
    width: min(240px, 72%);
    margin-left: auto;
  }

  .small-note {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer.footer-compact {
    margin-top: 12px;
  }

  .footer-compact-copy,
  .footer-compact-links a {
    font-size: 0.92rem;
  }

  .footer-grid {
    gap: 20px;
  }

  .footer-title {
    margin-bottom: 10px;
  }

  .footer-list {
    gap: 10px;
  }

  .social-icons {
    gap: 10px;
    margin-top: 16px;
  }

  .social-icon {
    width: 38px;
    height: 38px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .footer-note {
    font-size: 0.88rem;
  }

  .hero-pack-front,
  .product-thumb img,
  .difference-media img,
  .nutrition-visual img {
    animation: mobileProductZoom 4.8s ease-in-out infinite alternate;
  }

  .product-thumb:active img,
  .hero-pack:active .hero-pack-front,
  .difference-media:active img,
  .nutrition-visual:active img {
    transform: scale(1.1);
  }

  .products-grid,
  .products-grid-featured,
  .related-products-grid,
  .product-related-grid,
  .product-similar-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .product-card,
  .coming-card,
  .product-related-card,
  .product-similar-card {
    min-height: auto !important;
  }

  .product-thumb,
  .product-related-thumb,
  .product-similar-thumb {
    min-height: 220px !important;
    padding: 18px !important;
  }

  .product-thumb img,
  .product-related-thumb img,
  .product-similar-thumb img {
    width: min(100%, 180px) !important;
    max-height: 180px !important;
    object-fit: contain !important;
  }

  .product-card strong,
  .coming-card strong,
  .product-related-card strong,
  .product-similar-card strong {
    font-size: 1.08rem !important;
    line-height: 1.35 !important;
  }

  .coming-icon {
    width: 74px !important;
    height: 74px !important;
    font-size: 2rem !important;
  }

  .pill-row {
    gap: 8px !important;
  }

  .pill-row .pill,
  .product-card .pill,
  .coming-card .pill {
    font-size: 0.95rem !important;
    line-height: 1.25 !important;
    padding: 10px 14px !important;
  }

  .price-now {
    font-size: 2.2rem !important;
    line-height: 1 !important;
  }

  .coming-state,
  .coming-copy,
  .product-card p,
  .coming-card p {
    font-size: 1rem !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 16px, 1180px);
  }

  .section {
    padding: 34px 0;
  }

  .products-grid,
  .products-grid-featured,
  .related-products-grid,
  .product-related-grid,
  .product-similar-grid {
    gap: 14px !important;
  }

  .product-card,
  .coming-card,
  .product-related-card,
  .product-similar-card {
    padding: 16px !important;
    border-radius: 20px !important;
  }

  .product-thumb,
  .product-related-thumb,
  .product-similar-thumb {
    min-height: 190px !important;
    padding: 14px !important;
    border-radius: 18px !important;
  }

  .product-thumb img,
  .product-related-thumb img,
  .product-similar-thumb img {
    width: min(100%, 148px) !important;
    max-height: 148px !important;
  }

  .price-now {
    font-size: 1.95rem !important;
  }

  .pill-row .pill,
  .product-card .pill,
  .coming-card .pill {
    font-size: 0.9rem !important;
    padding: 8px 12px !important;
  }

  .product-card strong,
  .coming-card strong,
  .product-related-card strong,
  .product-similar-card strong {
    font-size: 1rem !important;
  }

  .hero {
    padding: 24px 0 20px;
  }

  .hero-eyebrow {
    font-size: 0.76rem;
  }

  .product-gallery-stage {
    min-height: 340px;
    padding: 20px;
    border-radius: 22px;
  }

  .product-gallery-main {
    width: min(100%, 300px);
    max-height: 320px;
  }

  .product-stage-badge {
    top: 14px;
    left: 14px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .product-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-thumb-button {
    padding: 8px;
    border-radius: 16px;
  }

  .product-thumb-button img {
    height: 82px;
  }

  .product-price-row {
    padding: 18px;
  }

  .product-price-value {
    font-size: 2rem;
  }

  .product-cta-group > * {
    flex-basis: 100%;
  }

  .hero-title {
    font-size: clamp(1.82rem, 9.2vw, 2.4rem);
  }

  .hero-subtitle {
    font-size: 0.94rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10vw, 2.85rem);
  }

  h2 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
  }

  .brand {
    width: var(--brand-logo-width);
    min-width: 0;
  }

  .button,
  .button-outline {
    min-height: 48px;
    padding: 0 18px;
  }

  .input-shell input {
    padding-right: 76px;
  }

  .password-toggle {
    min-height: 34px;
    padding: 0 10px;
  }

  .payment-option {
    grid-template-columns: 1fr;
  }

  .payment-option input {
    margin: 0;
  }

  .payment-badge {
    grid-column: auto;
  }

  .tag,
  .pill,
  .mini-badge {
    font-size: 0.84rem;
  }

  .hero-pack-front {
    width: min(250px, 94%);
  }

  .hero-pack-back {
    width: min(132px, 52%);
  }

  .hero-slider-track {
    min-height: 500px;
  }

  .hero-slide-photo {
    padding: 16px 16px 78px;
  }

  .hero-slide-image-wrap {
    width: min(100%, 330px);
  }

  .hero-slide-image-front,
  .hero-slide-image-back {
    width: min(100%, 330px);
  }

  .hero-slide-image {
    max-height: 360px;
  }

  .hero-slide-caption {
    left: 14px;
    right: 14px;
    bottom: 12px;
    padding: 14px;
  }

  .hero-slider-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .footer-rich-top {
    grid-template-columns: 1fr;
  }

  .products-stage {
    min-height: 360px;
  }

  .products-rating-strip {
    gap: 10px;
  }

  .products-rating-strip span {
    width: 100%;
    justify-content: center;
  }

  .footer-brandmark {
    width: min(100%, var(--footer-logo-mobile-width));
    height: var(--footer-logo-mobile-height);
  }

  .footer-brand-logo-image {
    width: 100%;
    max-width: 280px;
    min-width: 0;
  }

  .footer-social {
    gap: 12px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
  }

  .hero-slider-arrow {
    width: 36px;
    height: 36px;
  }

  .video-stage {
    padding: 22px;
  }

  .video-badge {
    font-size: 0.75rem;
    padding: 8px 12px;
  }

  .metric-card {
    padding: 16px 12px;
  }

  .cta-band,
  .footer-wrap,
  .legal-card,
  .panel,
  .checkout-card,
  .auth-side,
  .auth-card,
  .content-card,
  .step-card,
  .product-card,
  .story-card,
  .idea-card,
  .faq-item {
    padding: 20px;
  }

  .form-section,
  .checkout-mini-note,
  .checkout-consent {
    padding: 16px;
  }

  .social-icon {
    width: 34px;
    height: 34px;
  }

  .social-icon svg {
    width: 16px;
    height: 16px;
  }
  
}
