:root {
  --ink: #20140d;
  --brown: #3a2111;
  --cacao: #6d3c1c;
  --honey: #d79628;
  --gold: #f2c766;
  --cream: #fff8e9;
  --butter: #f7e4b6;
  --leaf: #617347;
  --sage: #dfe7cf;
  --white: #ffffff;
  --muted: #76685b;
  --line: rgba(58, 33, 17, 0.15);
  --shadow: 0 28px 80px rgba(58, 33, 17, 0.18);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(242, 199, 102, 0.22) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 102% 105%, rgba(215, 150, 40, 0.12) 0%, transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

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

button,
a,
textarea {
  font: inherit;
}

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

.site-header {
  background: rgba(255, 248, 233, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-shell {
  align-items: center;
  display: flex;
  gap: 22px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  min-height: 84px;
  padding: 12px 24px;
}

.brand {
  align-items: center;
  display: flex;
  gap: 12px;
  font-weight: 900;
}

.brand img {
  border: 2px solid rgba(215, 150, 40, 0.45);
  border-radius: 50%;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.nav-links {
  align-items: center;
  color: var(--brown);
  display: flex;
  font-size: 14px;
  font-weight: 800;
  gap: 28px;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  background: var(--honey);
  bottom: -8px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
  width: 100%;
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.site-search {
  flex: 0 1 280px;
  min-width: 210px;
  position: relative;
  z-index: 55;
}

.site-search-label {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-search input {
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(58, 33, 17, 0.16);
  border-radius: 999px;
  color: var(--brown);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  height: 42px;
  outline: 0;
  padding: 0 16px;
  width: 100%;
}

.site-search input:focus {
  background: var(--white);
  border-color: rgba(215, 150, 40, 0.62);
  box-shadow: 0 0 0 3px rgba(215, 150, 40, 0.14);
}

.site-search-results {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(58, 33, 17, 0.16);
  display: none;
  left: 0;
  max-height: 360px;
  overflow-y: auto;
  padding: 8px;
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
}

.site-search.open .site-search-results {
  display: grid;
  gap: 6px;
}

.search-result {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  min-height: 58px;
  padding: 8px;
  text-align: left;
  width: 100%;
}

.search-result:hover,
.search-result.active {
  background: rgba(247, 228, 182, 0.48);
}

.search-result img {
  border-radius: 50%;
  height: 42px;
  object-fit: cover;
  width: 42px;
}

.search-result strong,
.search-result span,
.search-result small {
  display: block;
}

.search-result strong {
  color: var(--brown);
  font-size: 13px;
  line-height: 1.25;
}

.search-result span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.3;
}

.search-result small {
  color: var(--leaf);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.search-result-price {
  color: var(--brown);
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
}

.search-empty {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin: 0;
  padding: 10px 12px;
}

.product-card.search-highlight,
.featured-promo-card.search-highlight {
  box-shadow: 0 0 0 3px rgba(215, 150, 40, 0.38), var(--shadow);
}

.menu-toggle {
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  width: 44px;
}

.menu-toggle span {
  background: var(--brown);
  display: block;
  height: 2px;
  margin: 7px auto;
  width: 24px;
}

.cart-pill,
.primary-link,
.secondary-link,
.erp-submit-button,
.whatsapp-button,
.product-button,
.promo-button,
.filter-button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  justify-content: center;
  min-height: 44px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.cart-pill:hover,
.primary-link:hover,
.secondary-link:hover,
.erp-submit-button:hover,
.whatsapp-button:hover,
.product-button:hover,
.promo-button:hover {
  transform: translateY(-2px);
}

.cart-pill {
  background: var(--brown);
  color: var(--white);
  gap: 10px;
  padding: 10px 14px;
}

.cart-pill strong {
  align-items: center;
  background: var(--gold);
  border-radius: 999px;
  color: var(--brown);
  display: inline-flex;
  height: 26px;
  justify-content: center;
  min-width: 26px;
}

.hero {
  background:
    radial-gradient(circle at 50% 42%, rgba(242, 199, 102, 0.34), transparent 28%),
    linear-gradient(135deg, var(--cream) 0%, var(--butter) 45%, #f4d48b 100%);
  min-height: calc(100vh - 84px);
  overflow: hidden;
  position: relative;
}

.hero-grid {
  align-items: center;
  display: block;
  margin: 0 auto;
  max-width: none;
  min-height: calc(100vh - 170px);
  padding: 20px 0 0;
  position: relative;
  z-index: 1;
}

.hero-title-strip {
  margin: 0 auto;
  padding: 12px 20px 0;
  position: relative;
  text-align: center;
  width: min(92vw, 920px);
  z-index: 8;
}

.hero-title-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-gold-line {
  display: block;
  width: 44px;
  height: 1.5px;
  background: var(--honey);
  border-radius: 999px;
  opacity: 0.85;
}

.hero-title-strip .eyebrow {
  justify-content: center;
  color: var(--cacao);
  letter-spacing: 0.2em;
  font-size: 10px;
  font-weight: 600;
}

.hero-title-strip h1 {
  font-size: clamp(34px, 4.6vw, 62px);
  line-height: 1;
  margin: 0;
  max-width: none;
}

.eyebrow {
  color: var(--leaf);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2 {
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  font-size: 104px;
  line-height: 0.84;
  margin-top: 14px;
  max-width: 620px;
}

h2 {
  font-size: 68px;
  line-height: 0.94;
}

.hero-copy p {
  color: var(--brown);
  font-size: 19px;
  font-weight: 600;
  line-height: 1.65;
  margin-top: 26px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.primary-link,
.secondary-link {
  min-height: 52px;
  padding: 0 22px;
}

.primary-link {
  background: var(--brown);
  box-shadow: var(--shadow);
  color: var(--white);
}

.secondary-link {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  color: var(--brown);
}

.hero-promo-stage {
  min-height: 500px;
  position: relative;
  width: 100%;
}

.hero-promo-window {
  align-items: stretch;
  display: flex;
  gap: 16px;
  min-height: 500px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 24px 20px 34px;
  position: relative;
  scroll-padding-left: 20px;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.hero-promo-card {
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(58, 33, 17, 0.12);
  border-radius: 12px;
  box-shadow: 0 18px 48px rgba(58, 33, 17, 0.13);
  display: flex;
  flex: 0 0 calc((100% - 64px) / 5);
  flex-direction: column;
  min-height: 430px;
  overflow: hidden;
  scroll-snap-align: start;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.hero-promo-card:hover {
  box-shadow: 0 24px 60px rgba(58, 33, 17, 0.22);
  filter: saturate(1.08);
  transform: translateY(-8px);
}

.hero-promo-image {
  background: #f7e4b6;
  aspect-ratio: 0.8;
  overflow: hidden;
}

.hero-promo-card img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-promo-copy {
  color: var(--brown);
  display: grid;
  gap: 8px;
  padding: 12px;
}

.hero-promo-copy strong {
  font-size: 13px;
  line-height: 1.2;
  min-height: 32px;
}

.hero-promo-copy p {
  color: var(--muted);
  display: -webkit-box;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0;
  min-height: 42px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-promo-copy button {
  background: var(--honey);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  min-height: 40px;
  width: 100%;
}

.hero-promo-card-1 {
  --card-depth: 1;
  --card-transform: none;
}

.hero-promo-card-2 {
  --card-depth: 2;
  --card-transform: none;
}

.hero-promo-card-3 {
  --card-depth: 5;
  --card-transform: none;
}

.hero-promo-card-4 {
  --card-depth: 2;
  --card-transform: none;
}

.hero-promo-card-5 {
  --card-depth: 1;
  --card-transform: none;
}

.hero-strip {
  animation: marquee 28s linear infinite;
  background: var(--brown);
  color: var(--cream);
  display: flex;
  font-size: 16px;
  font-weight: 950;
  gap: 38px;
  min-width: max-content;
  padding: 18px 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-strip span {
  padding-left: 38px;
}

.featured-promos-section,
.catalog-section,
.delivery-section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 92px 24px;
}

.section-heading {
  align-items: end;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.56fr);
  margin-bottom: 24px;
}

.catalog-section .section-heading h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  line-height: 1;
}

.section-heading.compact {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 760px;
  text-align: center;
}

.section-title-serif {
  color: var(--brown);
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(26px, 3.5vw, 40px);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  margin: 0;
  text-transform: none;
}

.section-heading p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.featured-promos-section {
  padding-bottom: 52px;
  padding-top: 52px;
}

.catalog-section {
  padding-top: 28px;
}

.catalog-section .section-heading.compact {
  align-items: flex-start;
  gap: 7px;
  margin-bottom: 14px;
  max-width: none;
  text-align: left;
}

.catalog-section .section-heading.compact .section-gold-line {
  width: 34px;
}

.catalog-section .section-heading p {
  margin-top: 2px;
}

.featured-promos-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 auto 32px;
  max-width: 760px;
  text-align: center;
}

.section-gold-line {
  background: var(--honey);
  border-radius: 999px;
  display: block;
  height: 1.5px;
  opacity: 0.75;
  width: 36px;
}

.section-eyebrow {
  color: var(--cacao);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.featured-promos-heading h2 {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  margin: 0;
  text-transform: none;
  color: var(--brown);
}

.featured-promos-heading p {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
  margin: 14px auto 0;
  max-width: 620px;
}

.featured-promos-grid {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.featured-promo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.featured-promo-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.featured-promo-image {
  align-items: center;
  aspect-ratio: 1;
  background: linear-gradient(180deg, #fffdf7, #f7e4b6);
  display: flex;
  justify-content: center;
  padding: 10px;
}

.featured-promo-image img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.featured-promo-copy {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.featured-promo-copy span {
  color: var(--honey);
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
}

.featured-promo-copy h3 {
  color: var(--brown);
  font-size: 14px;
  line-height: 1.15;
}

.featured-promo-copy p {
  color: var(--muted);
  display: -webkit-box;
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.promo-button,
.product-button {
  background: var(--honey);
  color: var(--white);
  font-size: 13px;
  min-height: 38px;
  padding: 0 12px;
  position: relative;
  width: 100%;
}

.product-button {
  margin-top: auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 20px;
}

.filter-button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brown);
  font-size: 13px;
  min-height: 34px;
  padding: 0 12px;
}

.filter-button.active {
  background: var(--brown);
  color: var(--white);
}

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

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.product-card img {
  aspect-ratio: 1.25;
  object-fit: cover;
  width: 100%;
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 9px;
  padding: 13px;
}

.product-top {
  align-items: start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.product-top h3 {
  color: var(--brown);
  font-size: 15px;
  line-height: 1.2;
}

.price {
  color: var(--honey);
  font-size: 13px;
  font-weight: 950;
  white-space: nowrap;
}

.product-body p {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
}

.product-meta {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-top: auto;
}

.delivery-grid article {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
}

.delivery-grid strong {
  color: var(--brown);
  display: block;
  margin-bottom: 7px;
}

.delivery-grid span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

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

.claims-section {
  background:
    radial-gradient(circle at 12% 16%, rgba(242, 199, 102, 0.22), transparent 28%),
    linear-gradient(180deg, #fffaf0 0%, #f7e4b6 100%);
  padding: 92px 24px;
}

.claims-shell {
  display: grid;
  gap: 32px;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1240px;
}

.claims-heading {
  position: sticky;
  top: 116px;
  align-self: start;
}

.claims-heading h2 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
  margin-top: 12px;
}

.claims-heading h1 {
  color: var(--brown);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.92;
  margin: 12px 0 0;
}

.claims-page {
  min-height: calc(100vh - 84px);
}

.claims-back-link {
  margin-top: 22px;
}

.official-claims-shell {
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
}

.official-claim-sheet {
  background: #fffdfa;
  border: 2px solid rgba(58, 33, 17, 0.42);
  box-shadow: 0 24px 70px rgba(58, 33, 17, 0.14);
  color: var(--ink);
  gap: 0;
  padding: 18px;
}

.official-sheet-head {
  align-items: stretch;
  border: 1px solid rgba(58, 33, 17, 0.42);
  display: grid;
  grid-template-columns: 1fr minmax(190px, 0.36fr);
  margin-bottom: 8px;
}

.official-sheet-head > div {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
}

.official-sheet-head span {
  color: var(--brown);
  font-size: 20px;
  font-weight: 950;
  letter-spacing: 0.03em;
}

.official-sheet-head strong {
  color: var(--brown);
  font-size: 16px;
  margin-top: 4px;
  text-transform: uppercase;
}

.claim-code-box {
  border-left: 1px solid rgba(58, 33, 17, 0.42);
  display: grid;
  font-weight: 950;
  gap: 6px;
  padding: 12px;
  text-transform: uppercase;
}

.official-date-row {
  align-items: center;
  border: 1px solid rgba(58, 33, 17, 0.42);
  border-bottom: 0;
  display: grid;
  gap: 8px;
  grid-template-columns: auto repeat(3, minmax(78px, 1fr));
  padding: 10px 12px;
}

.official-date-row span {
  color: var(--brown);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.official-date-row label {
  align-items: center;
  display: grid;
  gap: 4px;
  grid-template-columns: auto 1fr;
  margin: 0;
}

.official-claim-sheet fieldset,
.official-provider {
  background: transparent;
  border: 1px solid rgba(58, 33, 17, 0.42);
  border-radius: 0;
  box-shadow: none;
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 14px;
}

.official-claim-sheet fieldset + fieldset {
  border-top: 0;
}

.official-claim-sheet legend {
  background: #fffdfa;
  color: var(--brown);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.02em;
  padding: 0 8px;
  text-transform: uppercase;
}

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

.official-wide {
  grid-column: 1 / -1;
}

.official-claim-sheet label {
  color: var(--brown);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 5px;
  text-transform: uppercase;
}

.official-claim-sheet input,
.official-claim-sheet select,
.official-claim-sheet textarea {
  background: rgba(255, 248, 233, 0.46);
  border: 1px solid rgba(58, 33, 17, 0.28);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  min-height: 38px;
  padding: 8px 10px;
  text-transform: none;
}

.official-claim-sheet textarea {
  line-height: 1.45;
  min-height: 96px;
  resize: vertical;
}

.claim-product-preview {
  align-items: center;
  background: rgba(255, 248, 233, 0.62);
  border: 1px solid rgba(58, 33, 17, 0.18);
  display: grid;
  gap: 12px;
  grid-template-columns: 74px 1fr;
  padding: 10px;
}

.claim-product-preview img {
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid rgba(58, 33, 17, 0.14);
  height: 74px;
  object-fit: cover;
  width: 74px;
}

.claim-product-preview strong {
  color: var(--brown);
  display: block;
  font-size: 13px;
  line-height: 1.25;
}

.claim-product-preview span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  line-height: 1.35;
  margin-top: 3px;
  text-transform: none;
}

.official-choice-group {
  align-content: center;
  border: 1px solid rgba(58, 33, 17, 0.28);
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 10px;
}

.official-choice-group label {
  align-items: center;
  display: flex;
  gap: 8px;
}

.official-choice-group input {
  min-height: auto;
  width: auto;
}

.official-signature {
  justify-self: end;
  min-width: min(100%, 360px);
}

.provider-response-date {
  border: 1px solid rgba(58, 33, 17, 0.28);
}

.official-notes {
  border: 1px solid rgba(58, 33, 17, 0.42);
  border-top: 0;
  color: var(--muted);
  display: grid;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.45;
  padding: 12px 14px;
}

.official-notes p {
  margin: 0;
}

.claims-heading p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-top: 18px;
}

.claims-form {
  display: grid;
  gap: 16px;
}

.claim-card,
.claims-form fieldset {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(58, 33, 17, 0.08);
  margin: 0;
  padding: 20px;
}

.claim-intro {
  display: grid;
  gap: 8px;
}

.claim-intro strong {
  color: var(--brown);
  font-size: 20px;
}

.claim-intro span,
.claim-intro small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.claims-form legend {
  color: var(--brown);
  font-size: 16px;
  font-weight: 950;
  padding: 0 0 12px;
}

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

.claims-wide {
  grid-column: 1 / -1;
}

.claims-form label,
.claim-consent {
  color: var(--brown);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 7px;
}

.claims-form input,
.claims-form select,
.claims-form textarea {
  background: #fffdf7;
  border: 1px solid rgba(58, 33, 17, 0.16);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 0 12px;
  width: 100%;
}

.claims-form textarea {
  line-height: 1.5;
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.claims-form input:focus,
.claims-form select:focus,
.claims-form textarea:focus {
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(215, 150, 40, 0.18);
  outline: none;
}

.claim-consent {
  align-items: start;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  grid-template-columns: auto 1fr;
  line-height: 1.45;
  padding: 14px 16px;
}

.claim-consent input {
  min-height: auto;
  margin-top: 3px;
  width: auto;
}

.claim-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.claim-status {
  border-radius: var(--radius);
  color: var(--brown);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  min-height: 22px;
}

.claim-status.success {
  background: rgba(97, 115, 71, 0.12);
  color: #41502d;
  padding: 12px 14px;
}

.claim-status.loading {
  background: rgba(176, 128, 54, 0.12);
  color: #7a5522;
  padding: 12px 14px;
}

.claim-status.error {
  background: rgba(185, 72, 42, 0.12);
  color: #8a341f;
  padding: 12px 14px;
}

.product-info-section {
  margin: 0 auto;
  padding: 92px 0 0;
  position: relative;
}

.product-info-heading {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 24px 28px;
}

.product-info-heading h2 {
  color: var(--brown);
  font-size: clamp(42px, 6vw, 78px);
  line-height: 0.92;
  margin-top: 10px;
  max-width: 900px;
}

.product-info-heading p {
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.55;
  margin-top: 18px;
  max-width: 680px;
}

.product-story {
  display: grid;
  gap: 24vh;
  padding-bottom: 24vh;
}

.scroll-cue {
  align-items: center;
  background: rgba(255, 248, 233, 0.52);
  border: 1px solid rgba(58, 33, 17, 0.14);
  border-radius: 999px;
  bottom: 24px;
  box-shadow: 0 16px 42px rgba(32, 20, 13, 0.14);
  cursor: pointer;
  display: flex;
  height: 42px;
  justify-content: center;
  left: 50%;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transform: translateX(-50%) translateY(10px);
  transition: opacity 0.24s ease, transform 0.24s ease;
  width: 42px;
  z-index: 25;
}

.scroll-cue.visible {
  opacity: 0.72;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.scroll-cue span {
  animation: scrollCueBounce 1.4s ease-in-out infinite;
  border-bottom: 3px solid var(--brown);
  border-right: 3px solid var(--brown);
  height: 12px;
  margin-top: -4px;
  transform: rotate(45deg);
  width: 12px;
}

.product-story-panel {
  align-items: center;
  animation: productSceneReveal linear both;
  animation-range: entry 0% cover 42%;
  animation-timeline: view();
  display: grid;
  gap: 5vw;
  grid-template-columns: minmax(320px, 0.86fr) minmax(360px, 1fr);
  isolation: isolate;
  height: 100vh;
  overflow: hidden;
  padding: 7vh 7vw;
  position: sticky;
  top: 0;
}

.product-story-panel.honey {
  background:
    radial-gradient(circle at 82% 22%, rgba(242, 199, 102, 0.34), transparent 28%),
    linear-gradient(135deg, #221309 0%, #5d3213 46%, #d6952c 100%);
}

.product-story-panel.cheese {
  background:
    radial-gradient(circle at 16% 20%, rgba(247, 228, 182, 0.28), transparent 30%),
    linear-gradient(135deg, #1f2618 0%, #617347 48%, #d79628 100%);
}

.product-story-panel.crystallization {
  background:
    radial-gradient(circle at 84% 26%, rgba(255, 248, 233, 0.28), transparent 28%),
    linear-gradient(135deg, #2a170c 0%, #7b4a1f 48%, #f2c766 100%);
}

.product-story-panel.honey-training {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 248, 233, 0.2), transparent 24%),
    radial-gradient(circle at 16% 74%, rgba(217, 150, 37, 0.28), transparent 28%),
    linear-gradient(135deg, #180d06 0%, #4b260f 44%, #b5741f 100%);
}

.product-story-media {
  animation: productMediaFloat 7s ease-in-out infinite;
  background: rgba(255, 248, 233, 0.13);
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 22px;
  box-shadow: 0 32px 80px rgba(32, 20, 13, 0.28);
  height: min(76vh, 680px);
  overflow: hidden;
  position: relative;
}

.product-story-media::after {
  border: 1px solid rgba(255, 248, 233, 0.34);
  border-radius: 18px;
  content: "";
  inset: 14px;
  pointer-events: none;
  position: absolute;
}

.product-story-media img {
  display: block;
  filter: saturate(1.06) contrast(1.02);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.product-story-panel::after {
  background:
    linear-gradient(90deg, rgba(32, 20, 13, 0.34), transparent 38%, rgba(255, 248, 233, 0.08)),
    linear-gradient(0deg, rgba(32, 20, 13, 0.22), transparent 48%);
  content: "";
  inset: 0;
  position: absolute;
  z-index: -1;
}

.product-story-panel.alternate .product-story-media {
  order: 2;
}

.product-story-copy {
  color: var(--cream);
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.product-story-copy > span {
  background: rgba(255, 248, 233, 0.14);
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  padding: 9px 14px;
  text-transform: uppercase;
}

.product-story-copy h2 {
  color: var(--white);
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.9;
  margin-top: 18px;
}

.product-story-copy p {
  color: rgba(255, 248, 233, 0.86);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  line-height: 1.55;
  margin-top: 20px;
}

.product-story-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
}

.product-story-copy li {
  background: rgba(255, 248, 233, 0.92);
  border-radius: 999px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 950;
  padding: 10px 14px;
}

.honey-reel {
  animation: productMediaFloat 7s ease-in-out infinite;
  aspect-ratio: 9 / 16;
  background: #2a170c;
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(32, 20, 13, 0.42);
  height: min(78vh, 720px);
  justify-self: center;
  max-width: min(42vw, 420px);
  overflow: hidden;
  position: relative;
  width: 100%;
}

.honey-reel-photo {
  animation: honeyReelPhoto 18s ease-in-out infinite;
  filter: saturate(1.16) contrast(1.06);
  height: 100%;
  inset: 0;
  object-fit: cover;
  opacity: 0;
  position: absolute;
  transform: scale(1.04);
  transition: opacity 0.8s ease;
  width: 100%;
}

.honey-reel-photo-liquid {
  animation-name: honeyReelPhoto, honeyLiquidReveal;
}

.honey-reel-photo-crystal {
  animation-name: honeyReelPhoto, honeyCrystalReveal;
}

.honey-reel::before {
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 244, 199, 0.3), transparent 20%),
    linear-gradient(180deg, rgba(255, 248, 233, 0.06), transparent 38%, rgba(45, 24, 12, 0.9));
  content: "";
  inset: 0;
  position: absolute;
}

.honey-reel::after {
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 26px;
  content: "";
  inset: 16px;
  pointer-events: none;
  position: absolute;
}

.honey-reel-grain {
  animation: honeyParticles 9s linear infinite;
  background:
    radial-gradient(circle, rgba(255, 248, 213, 0.75) 0 2px, transparent 3px) 10% 10% / 86px 124px,
    radial-gradient(circle, rgba(217, 150, 37, 0.58) 0 1px, transparent 3px) 40% 25% / 112px 88px,
    radial-gradient(circle, rgba(255, 232, 178, 0.52) 0 1px, transparent 3px) 80% 18% / 94px 136px;
  inset: -20%;
  opacity: 0.42;
  position: absolute;
}

.honey-reel-logo {
  align-items: center;
  background: rgba(255, 248, 233, 0.9);
  border-radius: 999px;
  display: flex;
  gap: 8px;
  left: 22px;
  padding: 7px 12px 7px 7px;
  position: absolute;
  top: 22px;
  z-index: 2;
}

.honey-reel-logo img {
  border-radius: 50%;
  height: 34px;
  object-fit: cover;
  width: 34px;
}

.honey-reel-logo span {
  color: var(--brown);
  font-size: 12px;
  font-weight: 950;
}

.honey-reel-scenes {
  inset: 0;
  position: absolute;
  z-index: 2;
}

.honey-reel-scene {
  bottom: 34px;
  left: 28px;
  opacity: 0;
  position: absolute;
  right: 28px;
  transform: translateY(28px);
}

.honey-reel-scene span {
  background: rgba(255, 248, 233, 0.18);
  border: 1px solid rgba(255, 248, 233, 0.28);
  border-radius: 999px;
  color: var(--gold);
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  padding: 8px 12px;
  text-transform: uppercase;
}

.honey-reel-scene strong {
  color: var(--white);
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 0.96;
  margin-top: 14px;
  text-shadow: 0 12px 28px rgba(32, 20, 13, 0.28);
}

.honey-reel-scene p {
  color: rgba(255, 248, 233, 0.9);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.4;
  margin-top: 14px;
}

.honey-reel-scene.scene-1 {
  animation: honeySceneOne 18s ease-in-out infinite;
}

.honey-reel-scene.scene-2 {
  animation: honeySceneTwo 18s ease-in-out infinite;
}

.honey-reel-scene.scene-3 {
  animation: honeySceneThree 18s ease-in-out infinite;
}

.honey-reel-scene.scene-4 {
  animation: honeySceneFour 18s ease-in-out infinite;
}

.quantity-stepper {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: inline-flex;
  overflow: hidden;
}

.quantity-stepper button {
  background: var(--white);
  border: 0;
  color: var(--brown);
  cursor: pointer;
  font-weight: 950;
  height: 28px;
  width: 28px;
}

.quantity-stepper button:disabled {
  color: rgba(58, 33, 17, 0.28);
  cursor: not-allowed;
}

.quantity-stepper span {
  font-size: 12px;
  font-weight: 950;
  min-width: 26px;
  text-align: center;
}

.cart-drawer {
  align-items: center;
  background: rgba(32, 20, 13, 0.48);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 80;
}

.promo-choice {
  align-items: center;
  background: rgba(32, 20, 13, 0.54);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 24px;
  pointer-events: none;
  position: fixed;
  transition: opacity 0.2s ease;
  z-index: 90;
}

.promo-choice.open {
  opacity: 1;
  pointer-events: auto;
}

.promo-choice-panel {
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 14px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  max-height: min(90vh, 680px);
  max-width: 620px;
  overflow: hidden;
  position: relative;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.22s ease;
  width: min(100%, 620px);
}

.promo-choice.open .promo-choice-panel {
  transform: translateY(0) scale(1);
}

.promo-choice-head {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(247, 228, 182, 0.42));
  border-bottom: 1px solid var(--line);
  padding: 16px 68px 14px 22px;
}

.promo-choice-head h2 {
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.08;
  margin-top: 4px;
  text-transform: none;
}

.promo-close {
  position: absolute;
}

.promo-choice-body {
  display: grid;
  gap: 10px;
  max-height: none;
  overflow: auto;
  padding: 16px;
}

.promo-choice-summary,
.promo-choice-row,
.promo-bonus-note {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.promo-choice-summary {
  align-items: stretch;
  display: grid;
  gap: 12px;
  grid-template-columns: 124px minmax(96px, 0.35fr) 1fr;
  padding: 10px;
}

.promo-choice-summary > img {
  aspect-ratio: 1.08;
  background: #f7e4b6;
  border-radius: 10px;
  height: 116px;
  object-fit: cover;
  width: 124px;
}

.promo-choice-summary > div {
  align-items: flex-start;
  align-self: center;
  display: grid;
  gap: 4px;
}

.promo-choice-summary strong {
  color: var(--brown);
  font-size: 26px;
  line-height: 1;
  white-space: nowrap;
}

.promo-choice-summary span {
  color: var(--leaf);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.promo-choice-summary p {
  align-self: center;
  color: var(--brown);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.22;
  margin: 0;
}

.promo-choice-benefits {
  display: grid;
  gap: 6px;
}

.promo-choice-benefits span {
  background: rgba(247, 228, 182, 0.48);
  border: 1px solid rgba(215, 150, 40, 0.22);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 950;
  line-height: 1.2;
  padding: 6px 9px;
}

.promo-choice-row small,
.promo-bonus-note {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.promo-choice-list {
  display: grid;
  gap: 8px;
}

.promo-choice-row {
  align-items: center;
  display: grid;
  gap: 10px;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  min-height: 78px;
  padding: 9px 11px;
}

.promo-choice-row img {
  aspect-ratio: 1;
  background: #f7e4b6;
  border-radius: 10px;
  height: 58px;
  object-fit: cover;
  width: 58px;
}

.promo-choice-product-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.promo-choice-row strong {
  color: var(--brown);
  display: block;
  font-size: 14px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.promo-bonus-note {
  padding: 10px 12px;
}

.promo-choice-actions {
  background: linear-gradient(180deg, rgba(255, 248, 233, 0.92), var(--cream));
  border-top: 1px solid var(--line);
  padding: 10px 16px 14px;
}

.promo-choice-actions-inner {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(120px, 0.54fr) minmax(220px, 1fr) minmax(180px, 0.86fr);
}

.promo-choice-actions-inner span {
  align-self: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.promo-choice-actions-inner.ready span {
  color: #1f8f51;
}

.promo-confirm-button,
.promo-secondary-button {
  align-items: center;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0 14px;
  text-align: center;
}

.promo-confirm-button {
  background: var(--brown);
  color: var(--white);
}

.promo-secondary-button {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brown);
}

.promo-secondary-button:not(:disabled):hover,
.promo-confirm-button:not(:disabled):hover {
  filter: brightness(0.98);
  transform: translateY(-1px);
}

.promo-confirm-button:disabled,
.promo-secondary-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.cart-drawer.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-panel {
  background: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(340px, 1.1fr);
  grid-template-rows: auto minmax(0, 1fr);
  max-height: min(92vh, 780px);
  max-width: 940px;
  overflow: hidden;
  position: relative;
  transform: translateY(18px) scale(0.96);
  transition: transform 0.22s ease;
  width: min(100%, 940px);
}

.cart-drawer.open .cart-panel {
  transform: translateY(0) scale(1);
}

.cart-drawer[data-step="review"] .cart-panel {
  grid-template-columns: 1fr;
  max-height: min(88vh, 600px);
  max-width: 680px;
}

.cart-drawer[data-step="review"] .cart-header {
  padding: 10px 56px 8px 18px;
}

.cart-drawer[data-step="review"] .cart-header h2 {
  font-size: 26px;
  line-height: 1;
  margin-top: 3px;
}

.cart-drawer[data-step="review"] .cart-header .eyebrow {
  font-size: 11px;
}

.cart-drawer[data-step="review"] .icon-button {
  font-size: 22px;
  height: 36px;
  right: 14px;
  top: 12px;
  width: 36px;
}

.cart-header {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(247, 228, 182, 0.42));
  border-bottom: 1px solid var(--line);
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  min-height: auto;
  padding: 18px 76px 16px 24px;
}

.cart-header h2 {
  color: var(--brown);
  font-family: var(--font-sans);
  font-size: clamp(24px, 3.4vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  margin-top: 4px;
  text-transform: none;
}

.icon-button {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--brown);
  cursor: pointer;
  font-size: 30px;
  height: 44px;
  line-height: 1;
  position: absolute;
  right: 18px;
  top: 18px;
  width: 44px;
  z-index: 2;
}

.cart-items {
  align-self: stretch;
  border-right: 1px solid var(--line);
  display: grid;
  gap: 12px;
  max-height: 100%;
  overflow: auto;
  padding: 24px;
}

.cart-drawer[data-step="review"] .cart-items {
  display: none;
}

.cart-empty {
  align-self: start;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.6;
}

.cart-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  padding: 14px;
}

.cart-drawer[data-step="review"] .cart-item {
  box-shadow: none;
  gap: 6px;
  padding: 8px;
}

.cart-item-head {
  align-items: start;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.cart-item-head > strong {
  white-space: nowrap;
}

.cart-item strong {
  color: var(--brown);
}

.cart-item small {
  color: var(--muted);
}

.cart-line-badge {
  background: var(--sage);
  border-radius: 999px;
  color: var(--leaf);
  display: inline-flex;
  font-size: 10px;
  font-weight: 950;
  margin-bottom: 3px;
  padding: 3px 8px;
  width: fit-content;
}

.cart-bonus {
  color: #b26b18 !important;
  display: block;
  margin-top: 4px;
}

.cart-detail-list {
  background: rgba(247, 228, 182, 0.28);
  border: 1px solid rgba(58, 33, 17, 0.08);
  border-radius: var(--radius);
  display: grid;
  gap: 3px;
  list-style: none;
  margin: 0;
  padding: 6px 8px;
}

.cart-detail-list li {
  align-items: center;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.cart-detail-list span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.cart-detail-list strong {
  color: var(--brown);
  font-size: 11px;
  white-space: nowrap;
}

.cart-detail-list .bonus span,
.cart-detail-list .bonus strong {
  color: #b26b18;
}

.cart-item-actions {
  align-items: center;
  display: flex;
  gap: 8px;
  justify-content: space-between;
}

.cart-remove {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  min-height: 28px;
  padding: 0 8px;
}

.cart-remove:hover {
  border-color: #b23b18;
  color: #b23b18;
}

.cart-summary {
  align-content: start;
  display: grid;
  gap: 14px;
  max-height: 100%;
  overflow: auto;
  padding: 20px;
}

.cart-drawer[data-step="form"] .cart-summary {
  gap: 12px;
  padding: 18px 20px 20px;
}

.cart-drawer[data-step="review"] .cart-summary {
  overflow: visible;
  padding: 10px 18px 16px;
  gap: 8px;
}

.cart-total-row {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  min-height: 66px;
  overflow: hidden;
  padding: 10px 14px;
}

.cart-drawer[data-step="form"] .cart-total-row {
  background: #fffaf0;
  border-color: rgba(222, 160, 31, 0.35);
  min-height: 56px;
  padding: 10px 12px;
}

.cart-summary span,
.cart-summary label,
.cart-summary small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.cart-summary strong {
  color: var(--brown);
  font-size: clamp(28px, 6vw, 40px);
  line-height: 1;
  white-space: nowrap;
}

.cart-drawer[data-step="form"] .cart-summary strong {
  font-size: clamp(28px, 7vw, 36px);
}

.cart-drawer[data-step="review"] .cart-summary strong {
  font-size: 24px;
}

.cart-drawer[data-step="review"] .cart-total-row span {
  font-size: 12px;
}

.cart-summary .cart-item strong,
.cart-summary .cart-detail-list strong,
.cart-summary .preorder-step strong {
  font-size: revert;
  line-height: normal;
}

.preorder-step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  max-height: min(56vh, 360px);
  padding: 10px;
}

.preorder-step strong {
  color: var(--brown);
  font-size: 16px !important;
}

.preorder-step p {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0;
}

.preorder-items {
  display: grid;
  gap: 6px;
  min-height: 0;
  overflow: auto;
  padding-right: 4px;
}

.preorder-items .cart-item {
  background: #fffdf7;
}

.preorder-items .cart-item-head > strong {
  font-size: 14px !important;
}

.preorder-items .cart-detail-list strong {
  font-size: 11px !important;
}

.preorder-actions {
  background: var(--white);
  border-top: 1px solid var(--line);
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  margin: 0 -10px -10px;
  padding: 8px 10px 10px;
}

.preorder-primary,
.preorder-secondary {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 950;
  justify-content: center;
  min-height: 36px;
  padding: 0 10px;
  text-align: center;
}

.preorder-primary {
  background: var(--brown);
  border: 0;
  color: var(--white);
}

.preorder-secondary {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--brown);
}

.cart-drawer[data-step="review"] .order-fields,
.cart-drawer[data-step="review"] .erp-total-card,
.cart-drawer[data-step="review"] .cart-summary > label,
.cart-drawer[data-step="review"] .erp-submit-button,
.cart-drawer[data-step="review"] .secondary-whatsapp,
.cart-drawer[data-step="review"] .request-status,
.cart-drawer[data-step="review"] .cart-summary > small {
  display: none;
}

.cart-drawer[data-step="review"]:not(.has-items) .preorder-actions {
  display: none;
}

.cart-drawer[data-step="form"] .preorder-step {
  display: none;
}

textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  display: block;
  margin-top: 8px;
  min-height: 112px;
  padding: 12px;
  resize: vertical;
  width: 100%;
}

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

.order-fields label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
}

.order-fields input,
.order-fields select {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 16px;
  font-weight: 800;
  min-height: 54px;
  padding: 0 14px;
  width: 100%;
}

.order-fields select,
.order-fields input[type="date"] {
  box-shadow: 0 10px 22px rgba(59, 28, 16, 0.05);
}

.order-fields label:has([data-order-field="address"]) {
  grid-column: 1 / -1;
}

.order-fields label:has([data-order-field="city"]),
.order-fields label:has([data-order-field="deliveryDate"]) {
  min-width: 0;
}

.order-fields label:has([data-order-field="email"]),
.order-fields label:has([data-order-field="zone"]),
.order-fields label:has([data-order-field="district"]),
.order-fields label:has([data-order-field="deliveryChannel"]),
.order-fields label:has([data-order-field="paymentMethod"]),
.order-fields label:has([data-order-field="deliveryAmount"]),
.order-fields label:has([data-order-field="discountAmount"]),
.order-fields label:has([data-order-field="advanceAmount"]) {
  display: none;
}

.cart-drawer[data-step="form"] .erp-total-card {
  display: none;
}

.erp-total-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  gap: 8px;
  padding: 14px;
}

.erp-total-card div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.erp-total-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.erp-total-card strong {
  color: var(--brown);
  font-size: 15px;
}

.erp-total-card .erp-total-line {
  border-top: 1px solid var(--line);
  margin-top: 4px;
  padding-top: 10px;
}

.erp-total-card .erp-total-line strong,
.erp-total-card .erp-pending-line strong {
  font-size: 22px;
}

.erp-total-card .erp-pending-line strong {
  color: #b26b18;
}

.cart-summary > label {
  color: var(--muted);
  display: grid;
  font-size: 13px;
  font-weight: 850;
  gap: 8px;
}

.checkout-assurance {
  background: linear-gradient(135deg, rgba(31, 143, 81, 0.1), rgba(222, 160, 31, 0.16));
  border: 1px solid rgba(31, 143, 81, 0.18);
  border-radius: var(--radius);
  color: var(--brown);
  display: block;
  font-size: 13px;
  line-height: 1.35;
  padding: 11px 12px;
}

.erp-submit-button,
.whatsapp-button {
  background: #1f8f51;
  color: var(--white);
  font-size: 18px;
  min-height: 56px;
  padding: 0 18px;
  text-align: center;
}

.erp-submit-button {
  background: var(--brown);
  box-shadow: 0 18px 35px rgba(59, 28, 16, 0.18);
  width: 100%;
}

.erp-submit-button:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.secondary-whatsapp {
  background: #1f8f51;
  font-size: 15px;
  min-height: 48px;
}

.request-status {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  min-height: 20px;
  padding: 0 2px;
}

.request-status.success {
  color: #1f8f51;
}

.request-status.error {
  color: #b23b18;
}

.request-status.loading {
  color: var(--brown);
}

@keyframes sealFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-16px) rotate(2deg);
  }
}

@keyframes jarFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-18px);
  }
}

@keyframes productSceneReveal {
  from {
    opacity: 0.72;
    transform: scale(0.985);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes productMediaFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-14px) scale(1.015);
  }
}

@keyframes honeyReelPhoto {
  0%,
  100% {
    transform: scale(1.05) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.13) translate3d(-3%, -1%, 0);
  }
}

@keyframes honeyLiquidReveal {
  0%,
  24% {
    opacity: 1;
  }
  31%,
  100% {
    opacity: 0;
  }
}

@keyframes honeyCrystalReveal {
  0%,
  24% {
    opacity: 0;
  }
  31%,
  100% {
    opacity: 1;
  }
}

@keyframes honeyParticles {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-90px, -120px, 0);
  }
}

@keyframes honeySceneOne {
  0%,
  4% {
    opacity: 0;
    transform: translateY(28px);
  }
  8%,
  22% {
    opacity: 1;
    transform: translateY(0);
  }
  27%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes honeySceneTwo {
  0%,
  25% {
    opacity: 0;
    transform: translateY(28px);
  }
  30%,
  45% {
    opacity: 1;
    transform: translateY(0);
  }
  50%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes honeySceneThree {
  0%,
  48% {
    opacity: 0;
    transform: translateY(28px);
  }
  53%,
  68% {
    opacity: 1;
    transform: translateY(0);
  }
  73%,
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes honeySceneFour {
  0%,
  71% {
    opacity: 0;
    transform: translateY(28px);
  }
  76%,
  94% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-18px);
  }
}

@keyframes scrollCueBounce {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(45deg);
  }
}

@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-40%);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .nav-shell {
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: block;
  }

  .site-search {
    flex: 1 1 100%;
    order: 4;
    width: 100%;
  }

  .nav-links {
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 0;
    padding: 10px 22px 18px;
    position: absolute;
    right: 0;
    top: 100%;
  }

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

  .nav-links a {
    padding: 13px 0;
    width: 100%;
  }

  .hero-promo-stage {
    min-height: 500px;
  }

  .hero-promo-window {
    gap: 10px;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    min-height: 500px;
    overflow-x: auto;
    padding-inline: 18px;
  }

  .hero-promo-card {
    height: 390px;
    min-height: 390px;
  }

  .section-heading,
  .featured-promos-grid,
  .product-grid,
  .delivery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cart-panel {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow: auto;
  }

  .cart-header {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    display: block;
    min-height: auto;
    padding: 24px 72px 18px 22px;
  }

  .cart-header h2 {
    font-size: 42px;
  }

  .cart-items {
    border-right: 0;
    max-height: 240px;
    padding: 18px 22px;
  }

  .cart-drawer[data-step="review"] .cart-items {
    max-height: min(46vh, 420px);
  }

  .cart-summary {
    max-height: none;
    overflow: visible;
    padding: 18px 22px 24px;
  }

  .promo-choice-row,
  .promo-choice-summary {
    align-items: center;
  }

  .promo-choice-summary {
    gap: 8px;
    grid-template-columns: 118px minmax(0, 1fr);
    padding: 8px;
  }

  .promo-choice-summary > img {
    grid-row: 1 / span 2;
    height: 124px;
    width: 118px;
  }

  .promo-choice-summary p {
    font-size: 14px;
    grid-column: 2;
  }

  .promo-choice-benefits {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .promo-choice-benefits span {
    border-radius: 8px;
    font-size: 10px;
    padding: 6px 8px;
  }

  .promo-choice-row {
    grid-template-columns: 52px minmax(0, 1fr) auto;
    min-height: auto;
    padding: 8px;
  }

  .promo-choice-row img {
    height: 52px;
    width: 52px;
  }

  .promo-choice-actions-inner {
    grid-template-columns: 1fr;
  }

  .promo-choice-actions-inner span {
    font-size: 14px;
  }

  .promo-confirm-button,
  .promo-secondary-button {
    font-size: 15px;
    min-height: 52px;
  }

  .product-story-panel {
    height: 86vh;
    grid-template-columns: 1fr;
    padding: 5vh 5vw;
  }

  .product-story {
    gap: 14vh;
    padding-bottom: 14vh;
  }

  .product-story-media {
    height: min(42vh, 360px);
  }

  .honey-reel {
    height: min(66vh, 620px);
    max-width: min(76vw, 360px);
  }
}

@media (max-width: 720px) {
  .nav-shell {
    gap: 10px;
    padding-inline: 14px;
  }

  .brand span {
    display: none;
  }

  .hero-grid,
  .featured-promos-section,
  .catalog-section,
  .delivery-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-info-section {
    padding-top: 64px;
  }

  .product-info-heading {
    padding: 0 14px 22px;
  }

  .product-info-heading h2 {
    font-size: 42px;
  }

  .product-story-panel {
    height: auto;
    min-height: 78vh;
    padding: 18px 14px 26px;
    position: relative;
  }

  .product-story {
    gap: 10vh;
    padding-bottom: 10vh;
  }

  .product-story-panel.alternate .product-story-media {
    order: 0;
  }

  .product-story-media {
    height: 34vh;
    min-height: 230px;
  }

  .honey-reel {
    height: min(62vh, 560px);
    max-width: min(88vw, 330px);
  }

  .honey-reel-scene strong {
    font-size: 27px;
  }

  .honey-reel-scene p {
    font-size: 12px;
  }

  .product-story-copy,
  .product-story-panel.alternate .product-story-copy {
    max-width: none;
  }

  .product-story-copy h2 {
    font-size: 38px;
  }

  .product-story-copy p {
    font-size: 15px;
  }

  .hero-grid {
    padding-top: 44px;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 42px;
  }

  .hero-copy p {
    font-size: 16px;
  }

  .hero-promo-stage,
  .hero-promo-window {
    min-height: 430px;
  }

  .hero-promo-window {
    gap: 8px;
    grid-template-columns: repeat(5, minmax(142px, 1fr));
    overflow-x: auto;
    padding: 100px 0 26px;
  }

  .hero-promo-card {
    height: 300px;
    min-height: 300px;
  }

  .hero-promo-card-1,
  .hero-promo-card-2 {
    --card-transform: rotateY(5deg);
  }

  .hero-promo-card-3,
  .hero-promo-card-4,
  .hero-promo-card-5 {
    --card-transform: rotateY(-5deg);
  }

  .hero-promo-badge {
    padding: 42px 10px 10px;
  }

  .hero-promo-badge span {
    font-size: 18px;
  }

  .hero-promo-badge strong {
    font-size: 12px;
  }

  .section-heading,
  .delivery-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .featured-promos-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .catalog-section {
    padding-top: 22px;
  }

  .catalog-section .section-heading.compact {
    margin-bottom: 12px;
  }

  .catalog-section .section-heading p {
    font-size: 12px;
  }

  .featured-promos-heading {
    margin-bottom: 18px;
    text-align: left;
  }

  .featured-promos-heading h2 {
    font-size: 34px;
  }

  .product-grid,
  .featured-promos-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-promo-copy {
    gap: 6px;
    padding: 9px;
  }

  .featured-promo-copy span {
    font-size: 17px;
  }

  .featured-promo-copy h3 {
    font-size: 12px;
  }

  .featured-promo-copy p {
    font-size: 10px;
  }

  .product-card img {
    aspect-ratio: 1.05;
  }

  .product-top h3 {
    font-size: 12px;
    line-height: 1.15;
    max-width: 100%;
  }

  .product-body p {
    display: -webkit-box;
    font-size: 10px;
    line-height: 1.25;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .product-meta {
    font-size: 9px;
    line-height: 1.18;
  }

  .product-body {
    gap: 6px;
    padding: 9px;
  }

  .product-top {
    display: grid;
    gap: 4px;
  }

  .price {
    font-size: 11px;
  }

  .promo-button,
  .product-button {
    font-size: 10px;
    min-height: 32px;
    padding: 0 8px;
  }

  .cart-drawer {
    align-items: stretch;
    padding: 10px;
  }

  .promo-choice {
    align-items: stretch;
    padding: 10px;
  }

  .cart-panel {
    border-radius: 12px;
    max-height: calc(100dvh - 20px);
    max-width: none;
  }

  .cart-header {
    padding: 14px 58px 12px 16px;
  }

  .cart-header h2 {
    font-size: 25px;
    line-height: 1.05;
  }

  .cart-header .eyebrow {
    font-size: 11px;
  }

  .promo-choice-panel {
    border-radius: 12px;
    max-height: calc(100dvh - 20px);
    max-width: none;
  }

  .promo-choice-head {
    padding: 14px 58px 12px 16px;
  }

  .promo-choice-body {
    gap: 8px;
    padding: 10px;
  }

  .order-fields {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .order-fields label:has([data-order-field="address"]) {
    grid-column: auto;
  }

  .cart-total-row {
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 9px 12px;
  }

  .preorder-actions {
    grid-template-columns: 1fr;
  }

  .cart-summary strong {
    font-size: 32px;
  }

  .cart-drawer[data-step="form"] .cart-summary {
    gap: 10px;
    padding: 12px 14px 14px;
  }

  .cart-drawer[data-step="form"] .cart-total-row span {
    font-size: 12px;
  }

  .order-fields label,
  .cart-summary > label {
    font-size: 12px;
    gap: 6px;
  }

  .order-fields input,
  .order-fields select {
    min-height: 50px;
    padding: 0 12px;
  }

  .cart-summary textarea {
    min-height: 96px;
  }

  .checkout-assurance {
    font-size: 12px;
    padding: 9px 10px;
  }
}

/* ============================================================
   HERO CARDS MOBILE — carrusel deslizable
   Reemplaza el fan 3D por un carousel con scroll-snap
   ============================================================ */
@media (max-width: 800px) {
  .hero-promo-stage {
    min-height: 420px;
    overflow: hidden;
  }

  .hero-promo-window {
    /* Cambia de grid a flex carrusel */
    display: flex !important;
    align-items: stretch;
    gap: 14px;
    min-height: 420px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 72px 16px 28px !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Quita la perspectiva 3D */
    perspective: none;
    transform-style: flat;
  }

  .hero-promo-window::-webkit-scrollbar {
    display: none;
  }

  /* Cada tarjeta ocupa ~78% del ancho → se ve el borde de la siguiente */
  .hero-promo-card {
    flex: 0 0 78vw !important;
    height: 340px !important;
    min-height: 340px !important;
    scroll-snap-align: center;
    /* Elimina todos los transforms 3D */
    transform: none !important;
    transition: box-shadow 0.22s ease, filter 0.22s ease !important;
  }

  .hero-promo-card:hover {
    filter: saturate(1.06);
    transform: none !important;
  }

  /* Anula las CSS custom properties de rotación por tarjeta */
  .hero-promo-card-1,
  .hero-promo-card-2,
  .hero-promo-card-3,
  .hero-promo-card-4,
  .hero-promo-card-5 {
    --card-transform: none;
    --card-depth: 1;
  }

  /* Badge un poco más grande en móvil */
  .hero-promo-badge span {
    font-size: 20px;
  }

  .hero-promo-badge strong {
    font-size: 13px;
  }

  /* Indicador visual de deslizamiento */
  .hero-promo-stage::after {
    content: "desliza →";
    bottom: 10px;
    color: var(--cream);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: 0.06em;
    opacity: 0.52;
    position: absolute;
    right: 20px;
    text-transform: uppercase;
  }
}

/* ============================================================
   HERO CARDS — Clickable CTA overlay
   ============================================================ */
.hero-promo-card {
  cursor: pointer;
  outline: none;
}

.hero-promo-card:focus-visible {
  box-shadow: 0 0 0 3px var(--honey), 0 28px 70px rgba(58, 33, 17, 0.16);
}

/* Degradado de borde derecho — sugiere que hay más contenido */
.promo-edge-fade {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 248, 233, 0.72) 100%);
  bottom: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  width: 80px;
  z-index: 10;
  border-radius: 0 16px 16px 0;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.promo-edge-fade.hidden {
  opacity: 0;
}

/* Flecha de deslizamiento */
.promo-scroll-hint {
  align-items: center;
  background: rgba(255, 248, 233, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(215, 150, 40, 0.28);
  border-radius: 50%;
  bottom: 50%;
  box-shadow: 0 4px 18px rgba(58, 33, 17, 0.12);
  color: var(--cacao);
  display: flex;
  height: 38px;
  justify-content: center;
  opacity: 1;
  pointer-events: none;
  position: absolute;
  right: 14px;
  transform: translateY(50%);
  transition: opacity 0.5s ease;
  width: 38px;
  z-index: 11;
  animation: hintBounce 1.6s ease-in-out infinite;
}

.promo-scroll-hint.hidden {
  opacity: 0;
}

@keyframes hintBounce {
  0%, 100% { transform: translateY(50%) translateX(0); }
  50%       { transform: translateY(50%) translateX(5px); }
}

.hero-card-cta {
  align-items: center;
  background: rgba(32, 20, 13, 0);
  border-radius: 16px;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: background 0.3s ease;
  z-index: 4;
}

.hero-promo-card:hover .hero-card-cta {
  background: rgba(32, 20, 13, 0.44);
}

.hero-card-cta span {
  background: var(--honey);
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(32, 20, 13, 0.32);
  color: var(--white);
  font-size: 15px;
  font-weight: 950;
  opacity: 0;
  padding: 12px 28px;
  transform: translateY(12px) scale(0.86);
  transition: opacity 0.28s ease, transform 0.28s ease;
  white-space: nowrap;
}

.hero-promo-card:hover .hero-card-cta span,
.hero-promo-card:focus-visible .hero-card-cta span {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Hero promociones limpio: seis tarjetas, cinco visibles en escritorio */
.hero-promo-window {
  align-items: stretch !important;
  display: flex !important;
  gap: 16px !important;
  overflow-x: auto !important;
  overflow-y: visible !important;
  padding: 24px 20px 34px !important;
  scroll-padding-left: 20px;
  scroll-snap-type: x proximity;
  transform-style: flat !important;
}

.hero-promo-card {
  flex: 0 0 calc((100% - 64px) / 5) !important;
  min-height: 430px !important;
  position: relative;
  scroll-snap-align: start;
  transform: none !important;
}

.hero-promo-card:hover {
  transform: translateY(-8px) !important;
}

.hero-promo-card-1,
.hero-promo-card-2,
.hero-promo-card-3,
.hero-promo-card-4,
.hero-promo-card-5,
.hero-promo-card-6 {
  --card-transform: none;
  --card-depth: 1;
}

.hero-promo-image {
  aspect-ratio: 0.8;
  background: #f7e4b6;
  overflow: hidden;
}

.hero-promo-image img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-promo-copy {
  background: rgba(255, 253, 247, 0.98);
  color: var(--brown);
  display: grid;
  gap: 8px;
  padding: 12px;
}

.hero-promo-copy strong {
  font-size: 13px;
  line-height: 1.2;
  min-height: 32px;
}

.hero-promo-copy p {
  color: var(--muted);
  display: -webkit-box;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.28;
  margin: 0;
  min-height: 42px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.hero-promo-copy button {
  background: var(--honey);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  min-height: 40px;
  width: 100%;
}

@media (max-width: 800px) {
  .hero-title-strip {
    gap: 7px;
    padding-top: 8px;
  }

  .hero-title-strip h1 {
    font-size: clamp(30px, 11vw, 44px);
  }

  .hero-promo-stage {
    min-height: 390px !important;
  }

  .hero-promo-window {
    gap: 10px !important;
    min-height: 390px !important;
    padding: 32px 14px 22px !important;
    scroll-snap-type: x mandatory;
  }

  .hero-promo-card {
    flex: 0 0 42vw !important;
    min-height: 330px !important;
  }

  .hero-promo-copy {
    gap: 6px;
    padding: 9px;
  }

  .hero-promo-copy strong {
    font-size: 11px;
    min-height: 28px;
  }

  .hero-promo-copy p {
    font-size: 9px;
    min-height: 34px;
  }

  .hero-promo-copy button {
    font-size: 12px;
    min-height: 34px;
  }
}


/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
  bottom: 96px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  left: 50%;
  pointer-events: none;
  position: fixed;
  transform: translateX(-50%);
  z-index: 200;
}

.toast {
  align-items: center;
  background: var(--brown);
  border-radius: 999px;
  box-shadow: 0 16px 44px rgba(32, 20, 13, 0.34);
  color: var(--white);
  display: flex;
  font-size: 14px;
  font-weight: 850;
  gap: 10px;
  opacity: 0;
  padding: 11px 20px;
  transform: translateY(16px) scale(0.92);
  transition: opacity 0.28s ease, transform 0.28s ease;
  white-space: nowrap;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.toast-icon {
  align-items: center;
  background: var(--honey);
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  font-size: 11px;
  font-weight: 950;
  height: 22px;
  justify-content: center;
  min-width: 22px;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
  align-items: center;
  background: #22c55e;
  border: 3px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  bottom: 28px;
  box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
  color: var(--white);
  display: flex;
  height: 60px;
  justify-content: center;
  position: fixed;
  right: 28px;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  width: 60px;
  z-index: 60;
}

.whatsapp-float::before {
  animation: waFloatPulse 2.6s ease-out infinite;
  background: rgba(34, 197, 94, 0.36);
  border-radius: 50%;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.whatsapp-float:hover {
  box-shadow: 0 12px 44px rgba(34, 197, 94, 0.56);
  transform: scale(1.12);
}

.whatsapp-float svg {
  height: 28px;
  position: relative;
  width: 28px;
  z-index: 1;
}

@keyframes waFloatPulse {
  0% { opacity: 0.72; transform: scale(1); }
  70% { opacity: 0; transform: scale(1.9); }
  100% { opacity: 0; transform: scale(2); }
}

/* ============================================================
   CART BADGE BUMP ANIMATION
   ============================================================ */
@keyframes cartBadgeBump {
  0%   { transform: scale(1); }
  38%  { transform: scale(1.55); }
  68%  { transform: scale(0.86); }
  100% { transform: scale(1); }
}

[data-cart-count].bumped {
  animation: cartBadgeBump 0.44s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

/* ============================================================
   SCROLL REVEAL FOR PRODUCT & PROMO CARDS
   ============================================================ */
.product-card,
.featured-promo-card {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.46s ease, transform 0.46s ease;
}

.js-reveal .product-card:not(.revealed),
.js-reveal .featured-promo-card:not(.revealed) {
  opacity: 0;
  transform: translateY(18px);
}

.product-card.revealed,
.featured-promo-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   FEATURED PROMO BADGE "Más popular"
   ============================================================ */
.featured-promo-card--highlight {
  border-color: var(--honey);
  box-shadow: 0 0 0 2px rgba(215, 150, 40, 0.22);
}

.featured-promo-image {
  position: relative;
}

.promo-popular-badge {
  background: var(--honey);
  border-radius: 999px;
  color: var(--white);
  font-size: 10px;
  font-weight: 950;
  left: 8px;
  padding: 4px 10px;
  position: absolute;
  top: 8px;
  z-index: 2;
}

/* ============================================================
   PRODUCT CARD — stock badges & image wrapper
   ============================================================ */
.product-img-wrap {
  position: relative;
}

.product-img-wrap img {
  aspect-ratio: 1.25;
  display: block;
  object-fit: cover;
  width: 100%;
}

/* Override the old direct img selector within .product-card */
.product-card > img {
  display: none;
}

.stock-badge {
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  padding: 4px 10px;
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 2;
}

.stock-badge--low {
  background: #f59e0b;
  color: var(--white);
}

.stock-badge--out {
  background: rgba(58, 33, 17, 0.72);
  color: var(--cream);
}

.product-card--out {
  opacity: 0.65;
}

.product-card--out,
.product-card--out.revealed {
  opacity: 0.65;
}

.product-button:disabled {
  background: var(--muted);
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

/* ============================================================
   SUBSCRIPTION SECTION
   ============================================================ */
.subscription-section {
  background:
    linear-gradient(135deg, rgba(97, 115, 71, 0.14), rgba(255, 248, 233, 0.94) 48%, rgba(215, 150, 40, 0.12));
  margin: 0 auto;
  max-width: 1240px;
  padding: 78px 24px 92px;
}

.standalone-subscription {
  min-height: calc(100vh - 84px);
}

.subscription-section .section-heading.compact {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.subscription-intro {
  display: grid;
  gap: 28px;
}

.subscription-explainer {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subscription-explainer article,
.subscription-product,
.subscription-form {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(58, 33, 17, 0.08);
}

.subscription-explainer article {
  display: grid;
  gap: 8px;
  min-height: 132px;
  padding: 18px;
}

.subscription-explainer strong,
.subscription-panel-head strong,
.subscription-product-copy strong,
.subscription-cart-item strong {
  color: var(--brown);
}

.subscription-explainer p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.55;
}

.subscription-shell {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  margin-top: 30px;
}

.subscription-price-panel {
  display: grid;
  gap: 14px;
}

.subscription-panel-head {
  align-items: end;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.subscription-panel-head span {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subscription-panel-head strong {
  font-size: 22px;
  line-height: 1.1;
}

.subscription-price-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.subscription-product {
  display: grid;
  gap: 14px;
  grid-template-columns: 118px minmax(0, 1fr);
  padding: 14px;
}

.subscription-product img {
  aspect-ratio: 1;
  border-radius: var(--radius);
  height: 118px;
  object-fit: cover;
  width: 118px;
}

.subscription-product-copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.subscription-product-copy span {
  color: var(--leaf);
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
}

.subscription-product-copy p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.subscription-price-row {
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.subscription-price-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-decoration: line-through;
}

.subscription-price-row b {
  color: var(--brown);
  font-size: 20px;
}

.subscription-product-copy em {
  color: #41502d;
  font-size: 12px;
  font-style: normal;
  font-weight: 950;
}

.subscription-product-actions {
  align-items: center;
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
}

.subscription-product-actions button,
.subscription-submit {
  align-items: center;
  background: var(--brown);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 950;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
}

.subscription-product-actions span {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.subscription-form {
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 18px;
  position: sticky;
  top: 96px;
}

.subscription-fields {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.subscription-fields label,
.subscription-accept {
  color: var(--brown);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  text-transform: uppercase;
}

.subscription-fields input,
.subscription-fields select {
  background: rgba(255, 248, 233, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 44px;
  padding: 10px 12px;
  text-transform: none;
  width: 100%;
}

.subscription-fields label:has([data-sub-field="address"]) {
  grid-column: 1 / -1;
}

.subscription-cart {
  display: grid;
  gap: 10px;
}

.subscription-empty {
  background: rgba(97, 115, 71, 0.1);
  border-radius: var(--radius);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
  margin: 0;
  padding: 12px;
}

.subscription-cart-item {
  align-items: center;
  border: 1px solid rgba(97, 115, 71, 0.18);
  border-radius: var(--radius);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  padding: 10px;
}

.subscription-cart-item div:first-child {
  display: grid;
  gap: 3px;
}

.subscription-cart-item small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.subscription-cart-item b,
.subscription-total strong {
  color: var(--brown);
}

.subscription-total {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-top: 14px;
}

.subscription-total span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.subscription-total strong {
  font-size: 24px;
}

.subscription-accept {
  align-items: start;
  display: flex;
  gap: 10px;
  line-height: 1.45;
  text-transform: none;
}

.subscription-accept input {
  margin-top: 2px;
}

.subscription-submit {
  min-height: 48px;
  width: 100%;
}

.subscription-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.subscription-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  min-height: 20px;
}

.subscription-status.success,
.subscription-status.error,
.subscription-status.loading {
  border-radius: var(--radius);
  padding: 10px 12px;
}

.subscription-status.success {
  background: rgba(97, 115, 71, 0.12);
  color: #41502d;
}

.subscription-status.error {
  background: rgba(185, 72, 42, 0.12);
  color: #8a341f;
}

.subscription-status.loading {
  background: rgba(215, 150, 40, 0.12);
  color: #8b5a12;
}

/* ============================================================
   COMMENTS SECTION
   ============================================================ */
.comments-section {
  background:
    linear-gradient(180deg, rgba(255, 248, 233, 0) 0%, rgba(223, 231, 207, 0.58) 100%);
  margin: 0 auto;
  max-width: 1240px;
  padding: 88px 24px 96px;
}

.comments-section .section-heading.compact {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.comments-layout {
  align-items: start;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
  margin-top: 28px;
}

.comments-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.comments-empty {
  background: rgba(255, 255, 255, 0.68);
  border: 1px dashed rgba(97, 115, 71, 0.32);
  border-radius: var(--radius);
  color: var(--leaf);
  font-size: 13px;
  font-weight: 850;
  grid-column: 1 / -1;
  line-height: 1.45;
  margin: 0;
  padding: 12px 14px;
  text-align: center;
}

.comment-card,
.comments-form {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 52px rgba(58, 33, 17, 0.08);
}

.comment-card {
  display: grid;
  gap: 14px;
  min-height: 214px;
  padding: 20px;
}

.comment-card-head {
  align-items: center;
  display: flex;
  gap: 10px;
}

.comment-card-head img {
  border: 2px solid rgba(215, 150, 40, 0.28);
  border-radius: 50%;
  height: 54px;
  object-fit: cover;
  width: 54px;
}

.comment-card-head div {
  display: grid;
  gap: 3px;
}

.comment-card-head strong {
  color: var(--brown);
  font-size: 15px;
  line-height: 1.2;
}

.comment-card-head span,
.comment-card small {
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
}

.comment-stars {
  align-items: center;
  color: var(--honey);
  display: flex;
  gap: 8px;
  line-height: 1;
}

.comment-stars span {
  font-size: 16px;
  letter-spacing: 1px;
}

.comment-stars strong {
  color: var(--brown);
  font-size: 12px;
}

.comment-card p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.65;
}

.comment-card small {
  align-self: end;
}

.comments-prompt {
  display: flex;
  justify-content: center;
}

.comments-open-button {
  background: transparent;
  border: 1px solid rgba(58, 33, 17, 0.22);
  border-radius: 999px;
  color: var(--brown);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  min-height: 38px;
  padding: 0 18px;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}

.comments-open-button:hover {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(215, 150, 40, 0.48);
  transform: translateY(-2px);
}

.comments-modal {
  align-items: center;
  background: rgba(32, 20, 13, 0.42);
  display: none;
  inset: 0;
  justify-content: center;
  padding: 18px;
  position: fixed;
  z-index: 180;
}

.comments-modal.open {
  display: flex;
}

.comments-dialog {
  max-height: min(760px, calc(100dvh - 36px));
  max-width: 520px;
  overflow-y: auto;
  position: relative;
  width: min(100%, 520px);
}

.comments-close {
  align-items: center;
  background: var(--brown);
  border: 0;
  border-radius: 50%;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font: inherit;
  font-size: 13px;
  font-weight: 950;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 36px;
  z-index: 2;
}

.comments-form {
  display: grid;
  gap: 12px;
  padding: 20px;
}

.comments-form h3 {
  color: var(--brown);
  font-size: 20px;
  line-height: 1.2;
  padding-right: 42px;
}

.comments-form label {
  color: var(--brown);
  display: grid;
  font-size: 12px;
  font-weight: 900;
  gap: 6px;
  text-transform: uppercase;
}

.comments-form input,
.comments-form select,
.comments-form textarea {
  background: rgba(255, 248, 233, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font: inherit;
  min-height: 46px;
  padding: 10px 12px;
  text-transform: none;
  width: 100%;
}

.comments-form textarea {
  line-height: 1.5;
  min-height: 126px;
  resize: vertical;
}

.comment-submit-button {
  align-items: center;
  background: var(--brown);
  border: 0;
  border-radius: var(--radius);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.comment-submit-button:hover {
  box-shadow: 0 14px 34px rgba(58, 33, 17, 0.18);
  transform: translateY(-2px);
}

.comment-submit-button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.comments-status {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  min-height: 20px;
}

.comments-status.success {
  background: rgba(97, 115, 71, 0.12);
  border-radius: var(--radius);
  color: #41502d;
  padding: 10px 12px;
}

.comments-status.error {
  background: rgba(185, 72, 42, 0.12);
  border-radius: var(--radius);
  color: #8a341f;
  padding: 10px 12px;
}

.comments-status.loading {
  background: rgba(215, 150, 40, 0.12);
  border-radius: var(--radius);
  color: #8b5a12;
  padding: 10px 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brown);
  color: rgba(255, 248, 233, 0.7);
  margin-top: 0;
}

.footer-inner {
  display: grid;
  gap: 52px;
  grid-template-columns: 1.7fr 0.8fr 0.9fr 1.1fr;
  margin: 0 auto;
  max-width: 1240px;
  padding: 72px 24px 52px;
}

.footer-logo {
  align-items: center;
  color: var(--cream);
  display: inline-flex;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  gap: 12px;
  margin-bottom: 18px;
  text-decoration: none;
}

.footer-logo img {
  border: 2px solid rgba(242, 199, 102, 0.45);
  border-radius: 50%;
  height: 44px;
  object-fit: cover;
  width: 44px;
}

.footer-brand p {
  color: rgba(255, 248, 233, 0.58);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 340px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  align-items: center;
  background: rgba(255, 248, 233, 0.09);
  border: 1px solid rgba(255, 248, 233, 0.16);
  border-radius: 50%;
  color: rgba(255, 248, 233, 0.72);
  display: flex;
  height: 40px;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 40px;
}

.footer-social a:hover {
  background: rgba(215, 150, 40, 0.28);
  color: var(--gold);
  transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4,
.footer-claims h4 {
  color: var(--gold);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links ul,
.footer-contact ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  color: rgba(255, 248, 233, 0.68);
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}


.footer-links a:hover {
  color: var(--cream);
}

.footer-contact li {
  color: rgba(255, 248, 233, 0.58);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
}

.footer-contact a {
  color: rgba(255, 248, 233, 0.72);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--gold);
}

.footer-claim-card {
  align-items: center;
  background: rgba(255, 248, 233, 0.08);
  border: 1px solid rgba(242, 199, 102, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 248, 233, 0.78);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  padding: 6px 8px;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  width: 72px;
}

.footer-claim-card:hover {
  background: rgba(215, 150, 40, 0.18);
  border-color: rgba(242, 199, 102, 0.48);
  color: var(--cream);
  transform: translateY(-3px);
}

.footer-claim-icon {
  align-items: center;
  background: transparent;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  min-width: 56px;
  overflow: hidden;
  padding: 0;
}

.footer-claim-icon img {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.18));
  height: 34px;
  object-fit: contain;
  width: 58px;
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 248, 233, 0.1);
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1240px;
  padding: 20px 24px;
}

.footer-bottom span {
  color: rgba(255, 248, 233, 0.36);
  font-size: 12px;
  font-weight: 700;
}

.footer-tagline {
  letter-spacing: 0.03em;
}

@media (max-width: 1040px) {
  .subscription-explainer,
  .subscription-shell {
    grid-template-columns: 1fr;
  }

  .subscription-form {
    position: static;
  }

  .comments-layout {
    grid-template-columns: 1fr;
  }

  .claims-shell {
    grid-template-columns: 1fr;
  }

  .official-claims-shell {
    grid-template-columns: 1fr;
  }

  .claims-heading {
    position: static;
  }

  .footer-inner {
    gap: 36px;
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .subscription-section {
    padding: 58px 14px 64px;
  }

  .subscription-price-grid,
  .subscription-fields {
    grid-template-columns: 1fr;
  }

  .subscription-product {
    grid-template-columns: 94px minmax(0, 1fr);
  }

  .subscription-product img {
    height: 94px;
    width: 94px;
  }

  .subscription-panel-head,
  .subscription-product-actions,
  .subscription-total {
    align-items: start;
    display: grid;
  }

  .subscription-cart-item {
    grid-template-columns: 1fr;
  }

  .subscription-fields label:has([data-sub-field="address"]) {
    grid-column: auto;
  }

  .comments-section {
    padding: 58px 14px 64px;
  }

  .comments-grid {
    display: flex;
    gap: 12px;
    margin-left: -14px;
    margin-right: -14px;
    overflow-x: auto;
    padding: 2px 14px 14px;
    scroll-padding-left: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .comment-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 0;
    scroll-snap-align: start;
  }

  .comments-empty {
    flex: 0 0 calc(100vw - 28px);
  }

  .claims-section {
    padding: 58px 14px;
  }

  .claims-heading h2 {
    font-size: 42px;
  }

  .claim-card,
  .claims-form fieldset {
    padding: 16px;
  }

  .claims-grid {
    grid-template-columns: 1fr;
  }

  .claims-wide {
    grid-column: auto;
  }

  .claim-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .official-claim-sheet {
    padding: 10px;
  }

  .official-sheet-head,
  .official-date-row,
  .official-grid,
  .official-choice-group {
    grid-template-columns: 1fr;
  }

  .claim-code-box {
    border-left: 0;
    border-top: 1px solid rgba(58, 33, 17, 0.42);
  }

  .official-date-row label {
    grid-template-columns: 1fr;
  }

  .official-wide {
    grid-column: auto;
  }

  .official-signature {
    justify-self: stretch;
    min-width: 0;
  }

  .footer-inner {
    gap: 32px;
    grid-template-columns: 1fr;
    padding: 52px 18px 40px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
  }

  .whatsapp-float {
    bottom: 18px;
    height: 54px;
    right: 18px;
    width: 54px;
  }

  .toast-container {
    bottom: 82px;
    max-width: calc(100vw - 32px);
  }

  .toast {
    font-size: 13px;
  }
}
