@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:wght@700;800&display=swap');

/* ========================================
   Main Product Page Layout
   ======================================== */

:root {
  --color-bg: #ffffff;
  --color-panel: #f4ede0;
  --color-panel-deep: #ebe3d3;
  --color-surface-soft: rgba(255, 255, 255, 0.55);
  --color-surface-solid: #ffffff;
  --color-surface-warm: #fff7ef;
  --color-accent: #9f2f23;
  --color-cta: #c44531;
  --color-cta-border: #b63c2c;
  --color-cta-border-hover: #ab3628;
  --color-gold: #b8924a;
  --color-gold-light: #d4ad5e;
  --color-green: #4e8c46;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6560;
  --color-text-soft: #645b4f;
  --color-text-placeholder: #8b7f71;
  --color-icon-accent: #aa8957;
  --color-border: #ddd9d3;
  --color-border-gallery: #e9d9c5;
  --color-border-form: #e1d5c6;
  --color-border-input: #d7c8b5;
  --color-border-soft: rgba(0, 0, 0, 0.08);
  --color-border-soft-strong: rgba(0, 0, 0, 0.06);
  --color-border-light: rgba(255, 255, 255, 0.14);
  --color-border-form-soft: rgba(194, 167, 130, 0.34);
  --color-border-form-footer: rgba(120, 93, 61, 0.12);
  --color-card-soft-border: rgba(255, 255, 255, 0.44);
  --color-ring-gold-hover: rgba(184, 146, 74, 0.8);
  --color-ring-gold-active: rgba(184, 146, 74, 0.95);
  --color-ring-gold-soft: rgba(184, 146, 74, 0.12);
  --color-ring-gold: rgba(184, 146, 74, 0.18);
  --color-ring-cta: rgba(192, 57, 43, 0.16);
  --color-ring-cta-strong: rgba(192, 57, 43, 0.2);
  --color-white: #ffffff;
  --color-footer-bg: #1a1410;
  --color-footer-text: #a09080;
  --gradient-form-header: linear-gradient(180deg, var(--color-accent) 0%, var(--color-cta) 100%);
  --gradient-cta: linear-gradient(180deg, #cf4d39 0%, var(--color-cta) 100%);
  --gradient-cta-hover: linear-gradient(180deg, #d95943 0%, #ca4734 100%);
  --gradient-cta-active: linear-gradient(180deg, #c34230 0%, #b63c2c 100%);
  --gradient-cta-highlight: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0) 46%);
  --gradient-cta-shine: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.48) 50%, transparent 100%);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --type-micro: 10px;
  --type-caption: 13px;
  --type-meta: 13px;
  --type-body: 14px;
  --type-action: 15px;
  --type-input: 16px;
  --type-heading: 20px;
  --type-title: 30px;
  --type-title-compact: 26px;
  --type-price-tablet: 32px;
  --type-price: 38px;
  --type-price-compact: 34px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-form: 0 14px 30px rgba(73, 45, 15, 0.1);
  --shadow-floating: 0 -2px 12px rgba(0, 0, 0, 0.15);
  --shadow-gold: 0 4px 12px rgba(184, 146, 74, 0.3);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.15s ease;
  --layout-max: 1280px;
  --layout-left-width: 45%;
  --layout-right-width: 55%;
  --layout-left-max: 576px;
  --layout-right-max: 704px;
  --layout-column-pad-top: 60px;
  --layout-column-pad-side: 48px;
  --layout-column-pad-bottom: 50px;
  --gallery-gap: 18px;
  --gallery-thumb-gap: 14px;
  --gallery-thumb-size: 84px;
  --gallery-stage-size: 350px;
  --gallery-stage-inner-size: 94%;
}

/* ---- Reset ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

button,
input,
select {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
}

/* ========================================
   LAYOUT
   ======================================== */

.page-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.product-container {
  width: 100%;
  flex: 1;
  position: relative;
}

.product-page {
  width: 100%;
  max-width: var(--layout-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  position: relative;
}

.product-page::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -100vw;
  width: calc(100vw + var(--layout-left-width));
  background: var(--color-panel);
  z-index: 0;
  pointer-events: none;
}

.product-page-columns {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  position: relative;
  z-index: 1;
}

.product-column {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.product-column--left {
  width: var(--layout-left-width);
  max-width: var(--layout-left-max);
  background: var(--color-panel);
  overflow: hidden;
}

.product-column--left::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -120px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: var(--color-panel-deep);
  opacity: 0.5;
  pointer-events: none;
}

.product-column--right {
  width: var(--layout-right-width);
  max-width: var(--layout-right-max);
  background: var(--color-bg);
}

.gallery-panel,
.support-panel,
.info-panel,
.faq-section,
.product-badges {
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 1;
  background: transparent;
}

.gallery-panel,
.support-panel,
.info-panel,
.faq-section {
  display: flow-root;
}

.gallery-panel {
  padding: var(--layout-column-pad-top) var(--layout-column-pad-side) 0;
}

.support-panel {
  padding: 0 var(--layout-column-pad-side) var(--layout-column-pad-bottom);
}

.info-panel {
  padding: 0 var(--layout-column-pad-side) 0;
}

/* ========================================
   GALLERY
   ======================================== */

.gallery {
  display: flex;
  gap: var(--gallery-gap);
  width: 100%;
  min-width: 0;
  margin-bottom: 0;
  align-items: flex-start;
}

.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: var(--gallery-thumb-gap);
  flex-shrink: 0;
}

.gallery-thumb {
  width: var(--gallery-thumb-size);
  height: var(--gallery-thumb-size);
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--color-border-gallery);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: none;
}

.gallery-thumb:hover {
  border-color: var(--color-ring-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px var(--color-ring-gold-soft);
}

.gallery-thumb.active {
  border-color: var(--color-ring-gold-active);
  box-shadow: 0 0 0 2px var(--color-ring-gold);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: inherit;
}

.gallery-main {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  width: calc(100% - var(--gallery-thumb-size) - var(--gallery-gap));
  max-width: var(--gallery-stage-size);
  aspect-ratio: 1 / 1;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  box-shadow: none;
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  max-width: var(--gallery-stage-inner-size);
  max-height: var(--gallery-stage-inner-size);
  display: block;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  transition: opacity 0.4s ease, transform 0.4s ease;
  will-change: opacity, transform;
  margin: auto;
  filter: none;
}

.gallery-main-img.fade-out {
  opacity: 0;
  transform: scale(0.96);
}

.gallery-main-img.fade-in {
  opacity: 1;
  transform: scale(1);
}

/* Mobile Dots */
.gallery-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  padding: 16px 0 4px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.25;
  cursor: pointer;
  transition: opacity var(--transition), transform var(--transition);
  border: none;
}

.gallery-dot:hover { opacity: 0.5; }

.gallery-dot.active {
  opacity: 1;
  transform: scale(1.2);
}

/* ========================================
   SECTION HEADINGS
   ======================================== */

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--type-heading);
  color: var(--color-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

/* ========================================
   INGREDIENTS
   ======================================== */

.ingredients-section {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-soft);
}

.ingredient-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ingredient-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ingredient-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.ingredient-item:hover .ingredient-icon {
  transform: translateY(-2px);
}

.ingredient-content {
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--color-text-muted);
  padding-top: 2px;
}

.ingredient-content strong {
  color: var(--color-text);
  font-weight: 700;
}

/* ========================================
   TESTIMONIALS
   ======================================== */

.testimonials-section {
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border-soft);
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card {
  background: var(--color-surface-soft);
  border: 1px solid var(--color-card-soft-border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  transition: box-shadow var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-card);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--type-meta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.02em;
}

.testimonial-meta {
  flex: 1;
  min-width: 0;
}

.testimonial-meta strong {
  display: block;
  font-size: var(--type-meta);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
}

.testimonial-meta span {
  font-size: var(--type-caption);
  color: var(--color-text-muted);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

.testimonial-text {
  font-size: var(--type-body);
  font-style: italic;
  line-height: 1.6;
  color: var(--color-text-muted);
}

/* ========================================
   BADGES
   ======================================== */

.badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.product-badges {
  padding: var(--layout-column-pad-top) var(--layout-column-pad-side) 22px;
}

.product-badges .badges {
  margin-bottom: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: var(--type-caption);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  line-height: 1;
}

.badge--sale { background: var(--color-cta); }
.badge--delivery { background: var(--color-green); }

/* ========================================
   PRODUCT INFO
   ======================================== */

.product-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--type-title);
  line-height: 1.25;
  color: var(--color-text);
  margin-bottom: 18px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.rating-stars {
  display: flex;
  gap: 3px;
}

.rating-text {
  font-size: var(--type-body);
  font-weight: 500;
  color: var(--color-text-muted);
}

.price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 24px;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-current {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--type-price);
  line-height: 1;
  color: var(--color-text);
}

.price-original {
  font-size: var(--type-heading);
  font-weight: 400;
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price-note {
  margin: 0;
  max-width: 35ch;
  font-size: var(--type-caption);
  line-height: 1.45;
  color: var(--color-text-muted);
}

.product-description {
  font-size: var(--type-body);
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

/* ========================================
   WHY CHOOSE
   ======================================== */

.why-choose {
  margin-bottom: 36px;
}

.why-choose .section-heading {
  margin-bottom: 16px;
  font-size: var(--type-heading);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--color-text);
}

/* ========================================
   FAQ
   ======================================== */

.faq-section {
  display: flow-root;
  padding: 0 var(--layout-column-pad-side) var(--layout-column-pad-bottom);
  margin-bottom: 0;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border);
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: var(--type-body);
  color: var(--color-text);
  margin-bottom: 6px;
}

.faq-a {
  font-size: var(--type-body);
  line-height: 1.6;
  color: var(--color-text-muted);
  padding-left: 24px;
}

/* ========================================
   FORM
   ======================================== */

.order-form {
  --form-type-ui: var(--type-body);
  --form-type-note: var(--type-meta);
  --form-type-caption: var(--type-caption);
  --form-color-body: var(--color-text);
  --form-color-muted: var(--color-text-soft);
  --form-color-subtle: var(--color-text-soft);
  --form-color-accent: var(--color-accent);
  --form-color-divider: var(--color-border-form-soft);
  --form-color-icon: var(--color-icon-accent);
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 36px;
  border: 1px solid var(--color-border-form);
  border-radius: var(--radius-md);
  background: var(--color-panel);
  box-shadow: var(--shadow-form);
  overflow: hidden;
}

.form-offer-header {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--color-border-light);
  background: var(--gradient-form-header);
}

.form-offer-eyebrow {
  padding: 14px 18px;
  margin-bottom: 0;
  font-size: var(--form-type-ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-surface-warm);
}

.form-offer-body {
  position: relative;
  z-index: 1;
  padding: 18px;
  background: var(--color-panel);
}

.form-offer-meta {
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-border-form-soft);
}

.form-offer-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 10px;
}

.form-offer-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  padding: 11px 14px;
  border: 1px solid var(--color-card-soft-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: none;
  font-size: var(--form-type-ui);
  font-weight: 500;
  line-height: 1.4;
  color: var(--form-color-body);
}


.form-steps {
  list-style: none;
  margin-bottom: 16px;
  padding: 14px;
  border: 1px solid var(--color-card-soft-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: none;
}

.gallery--single .gallery-main {
  width: min(100%, var(--gallery-stage-size));
}

.form-step {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-step + .form-step {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--form-color-divider);
}

.form-step span:last-child {
  font-size: var(--form-type-ui);
  font-weight: 400;
  line-height: 1.45;
  color: var(--form-color-body);
}

.form-step strong {
  color: var(--form-color-accent);
  font-weight: 700;
}

.form-step-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  font-size: var(--type-caption);
  font-weight: 700;
  box-shadow: none;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-control {
  position: relative;
}

.form-input {
  width: 100%;
  height: 48px;
  padding: 0 16px 0 44px;
  border: 1px solid var(--color-border-input);
  border-radius: var(--radius-md);
  font-size: var(--type-input);
  font-weight: 400;
  color: var(--form-color-body);
  background: var(--color-surface-solid);
  box-shadow: none;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background-color var(--transition-fast);
}

.form-input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--form-color-icon);
  transform: translateY(-50%);
  pointer-events: none;
}

.form-input:focus {
  border-color: var(--color-cta);
  box-shadow: 0 0 0 2px var(--color-ring-cta);
  background: var(--color-surface-solid);
}

.form-input::placeholder {
  font-weight: 400;
  color: var(--color-text-placeholder);
  opacity: 1;
}

.form-submit {
  position: relative;
  width: 100%;
  height: 48px;
  margin-top: 4px;
  border: 1px solid var(--color-cta-border);
  border-radius: var(--radius-md);
  background: var(--gradient-cta);
  color: var(--color-white);
  font-weight: 700;
  font-size: var(--type-action);
  letter-spacing: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: none;
  overflow: hidden;
}

.form-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-cta-highlight);
  pointer-events: none;
}

.form-submit::after {
  content: '';
  position: absolute;
  top: -30%;
  left: -38%;
  width: 24%;
  height: 170%;
  background: var(--gradient-cta-shine);
  transform: skewX(-20deg);
  animation: form-cta-shine 4.4s ease-in-out infinite;
  pointer-events: none;
}

.form-submit:hover {
  background: var(--gradient-cta-hover);
  border-color: var(--color-cta-border-hover);
}

.form-submit:focus-visible {
  box-shadow: 0 0 0 3px var(--color-ring-cta-strong);
}

.form-submit:active {
  background: var(--gradient-cta-active);
}

.form-urgency {
  display: block;
  width: 100%;
  margin: 14px 0 0;
  padding: 11px 14px;
  border: 1px solid var(--color-card-soft-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-soft);
  box-shadow: none;
  font-size: var(--form-type-ui);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  color: var(--form-color-muted);
}

.form-urgency-prefix {
  color: var(--form-color-muted);
  margin-right: 0.35em;
}

.form-callback-notice {
  color: var(--form-color-accent);
  font-weight: 700;
}

.form-badge-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 14px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--color-border-form-soft);
}

.form-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0;
  border: none;
  background: transparent;
  font-size: var(--form-type-caption);
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  color: var(--form-color-subtle);
}

.form-proof-footer {
  padding: 12px 18px 14px;
  background: var(--color-panel-deep);
  border-top: 1px solid var(--color-border-form-footer);
}

.form-proof {
  font-size: var(--form-type-note);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  color: var(--form-color-muted);
}

.form-proof strong {
  color: var(--form-color-accent);
  font-weight: 700;
}

@keyframes form-cta-shine {
  0%,
  16% {
    transform: translateX(0) skewX(-20deg);
    opacity: 0;
  }

  24% {
    opacity: 1;
  }

  44% {
    transform: translateX(520%) skewX(-20deg);
    opacity: 0;
  }

  100% {
    transform: translateX(520%) skewX(-20deg);
    opacity: 0;
  }
}
/* ========================================
   FLOATING CTA (Mobile only)
   ======================================== */

.floating-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 56px;
  background: var(--color-cta);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--type-action);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow-floating);
}

.floating-cta.show {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   BENEFITS ROW (Bottom)
   ======================================== */

.benefits-row {
  position: relative;
  z-index: 1;
  background: transparent;
  padding: 40px 20px;
  isolation: isolate;
}

.benefits-row::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background: var(--color-panel);
  border-top: 1px solid var(--color-border-soft-strong);
  z-index: -1;
}

.benefits-row-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 30px;
  justify-content: center;
  padding-inline: 10px;
  box-sizing: border-box;
}

.benefit-card {
  flex: 1 1 0;
  min-width: 0;
  max-width: 300px;
  text-align: center;
}

.benefit-copy {
  display: flex;
  flex-direction: column;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.benefit-card:hover .benefit-icon {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.benefit-title {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: var(--type-caption);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text);
  margin-bottom: 6px;
}

.benefit-text {
  font-size: var(--type-body);
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* ========================================
   FOOTER
   ======================================== */

.site-footer {
  background:
    radial-gradient(circle at top center, rgba(184, 146, 74, 0.08) 0%, transparent 42%),
    linear-gradient(180deg, #1c140f 0%, #110c09 100%);
  border-top: 1px solid rgba(184, 146, 74, 0.14);
  padding: 40px 20px 30px;
}

.site-footer__inner {
  max-width: var(--layout-max);
  margin: 0 auto;
  display: grid;
  gap: 22px;
}

.site-footer__top {
  display: block;
  padding-bottom: 4px;
}

.site-footer__copyright {
  margin: 0;
  font-size: var(--type-meta);
  line-height: 1.6;
  color: rgba(208, 191, 166, 0.82);
  text-align: center;
}

.site-footer__theme {
  margin: -2px 0 0;
  justify-self: center;
  color: rgba(208, 191, 166, 0.82);
  font-size: var(--type-micro);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.site-footer__nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
}

.site-footer__nav a,
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 0;
  padding: 0;
  font-size: var(--type-meta);
  line-height: 1.45;
  color: rgba(208, 191, 166, 0.82);
  text-decoration: none;
  transition: color var(--transition);
  white-space: nowrap;
}

.site-footer__nav a::before,
.footer-links a::before {
  content: '';
  width: 12px;
  height: 12px;
  margin-right: 8px;
  background-color: currentColor;
  -webkit-mask-image: url('/assets/img/skin/square-four-white.svg');
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url('/assets/img/skin/square-four-white.svg');
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  opacity: 0.72;
  flex-shrink: 0;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: rgba(255, 247, 239, 0.96);
  text-decoration: none;
}

.site-footer__disclaimer {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.site-footer [data-footer-disclaimer],
.site-footer #custom-disclaimer {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0;
  font-size: var(--type-caption);
  line-height: 1.7;
  text-align: justify;
  color: rgba(208, 191, 166, 0.82);
}

.site-footer [data-footer-disclaimer][dir='rtl'],
.site-footer #custom-disclaimer[dir='rtl'] {
  text-align: right;
}

/* ========================================
   RESPONSIVE — Tablet
   ======================================== */

@media screen and (max-width: 1100px) {
  :root {
    --layout-left-width: 50%;
    --layout-right-width: 50%;
    --layout-left-max: 640px;
    --layout-right-max: 640px;
    --layout-column-pad-top: 40px;
    --layout-column-pad-side: 32px;
    --layout-column-pad-bottom: 40px;
    --gallery-gap: 16px;
    --gallery-thumb-gap: 12px;
    --gallery-thumb-size: 72px;
    --gallery-stage-size: 320px;
  }

  .product-title {
    font-size: var(--type-title-compact);
  }

  .price-current {
    font-size: var(--type-price-tablet);
  }
}

/* ========================================
   RESPONSIVE — Mobile
   ======================================== */

@media screen and (max-width: 768px) {
  :root {
    --gallery-stage-size: 340px;
    --gallery-stage-inner-size: 96%;
  }

  .product-page-columns {
    flex-direction: column;
  }

  .product-page::after {
    display: none;
  }

  .product-column {
    width: 100%;
    max-width: 100%;
    background: transparent;
  }

  .product-column--left,
  .product-column--right {
    display: contents;
  }

  .product-column--left::after {
    display: none;
  }

  .gallery-panel,
  .info-panel,
  .support-panel,
  .faq-section {
    width: 100%;
    max-width: 100%;
  }

  .product-badges {
    order: 1;
    background: var(--color-panel);
    padding: 24px 20px 16px;
  }

  .product-badges .badges {
    gap: 10px;
  }

  .gallery-panel {
    order: 2;
    background: var(--color-panel);
    padding: 0 20px 28px;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  }

  .info-panel {
    order: 3;
    background: var(--color-bg);
    padding: 28px 20px 0;
  }

  .support-panel {
    order: 4;
    background: var(--color-bg);
    padding: 0 20px 0;
  }

  .faq-section {
    order: 5;
    background: var(--color-bg);
    padding: 24px 20px 40px;
    border-top: 1px solid var(--color-border-soft);
    margin-bottom: 0;
  }

  .gallery {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }

  .gallery-thumbs {
    display: none;
  }

  .gallery-dots {
    display: flex;
  }

  .gallery-main {
    flex: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: var(--gallery-stage-size);
    aspect-ratio: 1 / 1;
    padding: 0;
  }

  .gallery-main-img {
    margin: 0 auto;
  }

  .product-title {
    font-size: var(--type-title-compact);
    margin-bottom: 14px;
  }

  .price-current {
    font-size: var(--type-price-compact);
  }

  .price-block {
    gap: 6px;
    margin-bottom: 20px;
  }

  .product-description {
    margin-bottom: 24px;
  }

  .order-form {
    --form-type-ui: var(--type-meta);
    margin-bottom: 32px;
  }

  .form-offer-eyebrow {
    padding: 13px 14px;
    letter-spacing: 0.07em;
  }

  .form-offer-body {
    padding: 16px 14px;
  }

  .form-offer-meta {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .form-offer-highlights {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .form-offer-row {
    gap: 8px;
  }


  .form-steps {
    margin-bottom: 14px;
    padding: 12px;
  }

  .form-step {
    gap: 10px;
  }

  .form-step span:last-child {
  }

  .form-step-index {
    width: 22px;
    height: 22px;
  }

  .form-group {
    margin-bottom: 10px;
  }

  .form-input {
    height: 48px;
    padding-left: 42px;
    font-size: var(--type-input);
  }

  .form-submit {
    height: 48px;
    font-size: var(--type-action);
  }

  .form-urgency {
    margin-top: 12px;
    padding: 10px 12px;
  }

  .form-badge-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  .form-badge {
  }

  .form-proof-footer {
    padding: 12px 14px 13px;
  }

  .form-proof {
  }
  .why-choose {
    margin-bottom: 0;
  }

  .ingredients-section {
    margin-top: 28px;
    padding-top: 24px;
    margin-bottom: 4px;
  }

  .testimonials-section {
    margin-top: 28px;
    padding-top: 24px;
    margin-bottom: 28px;
  }

  .floating-cta {
    display: block;
  }

  .benefits-row-inner {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
    gap: 24px;
    padding-inline: 0;
  }

  .benefit-card {
    width: 100%;
    max-width: 100%;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 14px;
  }

  .benefit-copy {
    flex: 1;
    min-width: 0;
    text-align: left;
  }

  .benefit-title {
    margin-bottom: 4px;
  }

  .benefit-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .site-footer {
    padding: 30px 20px 24px;
  }

  .site-footer__inner {
    gap: 18px;
  }

  .site-footer__top {
    text-align: center;
  }

  .site-footer__copyright {
    text-align: center;
  }

  .site-footer__theme {
    margin-top: -2px;
    justify-self: center;
    text-align: center;
  }

  .site-footer__nav,
  .footer-links {
    gap: 8px 12px;
  }

  .site-footer__disclaimer {
    padding-top: 12px;
  }
}

.badge img,
.section-heading img,
.rating-stars img,
.testimonial-stars img,
.form-offer-row img,
.form-input-icon img,
.form-badge img,
.check-list img,
.faq-q img,
.ingredient-icon img,
.benefit-icon img {
  display: block;
  flex-shrink: 0;
}

.check-list img {
  margin-top: 2px;
}

.form-badge img {
  width: 24px;
  height: 24px;
}




