:root {
  --cream: #fbf3e8;
  --cream-2: #fff8f0;
  --warm: #f2dfcc;
  --sand: #dfc2a8;
  --brown: #4d2420;
  --brown-2: #7a3e36;
  --ink: #241817;
  --muted: #806b63;
  --accent: #c8715b;
  --gold: #d8ad3c;
  --white: #fffaf5;
  --shadow: 0 20px 50px rgba(77, 36, 32, 0.18);
}

* {
  box-sizing: border-box;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: 76px;
  background:
    linear-gradient(180deg, #fff8f0 0%, var(--cream) 18%, #f8eadc 100%);
  color: var(--ink);
  font-family: "Poppins", "Segoe UI", Arial, Helvetica, sans-serif;
}

button,
a {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px 18px;
  background: rgba(247, 238, 228, 0.9);
  border-bottom: 1px solid rgba(77, 36, 32, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  width: min(44vw, 220px);
  min-width: 150px;
}

.brand img {
  width: 100%;
  max-height: 52px;
  object-fit: contain;
  object-position: left center;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.whatsapp-button,
.cart-button,
.menu-button {
  border: 0;
  color: var(--ink);
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(77, 36, 32, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #e9bf43, #d7a72f);
  box-shadow: 0 12px 26px rgba(77, 36, 32, 0.14);
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.cart-button {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(77, 36, 32, 0.1);
  border-radius: 16px;
  background: rgba(255, 250, 245, 0.92);
  box-shadow: 0 12px 26px rgba(77, 36, 32, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -4px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--accent);
  color: white;
  font-size: 12px;
  font-weight: 800;
}

.menu-button {
  display: grid;
  gap: 5px;
  width: 48px;
  height: 48px;
  place-content: center;
  border-radius: 16px;
  background: transparent;
  transition: background 160ms ease;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible,
.cart-button:hover,
.cart-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(77, 36, 32, 0.18);
}

.whatsapp-button:active,
.cart-button:active,
.menu-button:active {
  transform: translateY(1px) scale(0.98);
}

.menu-button:hover,
.menu-button.is-open {
  background: rgba(77, 36, 32, 0.08);
}

.menu-button span {
  display: block;
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--brown);
}

.icon-cart,
.icon-phone {
  width: 20px;
  height: 20px;
  border: 2.2px solid currentColor;
  display: inline-block;
}

.icon-cart {
  position: relative;
  width: 20px;
  height: 23px;
  border-radius: 6px 6px 7px 7px;
  border-top-width: 2.2px;
}

.icon-cart::before {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -8px;
  height: 10px;
  border: 2.2px solid currentColor;
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  background: transparent;
}

.icon-phone {
  position: relative;
  width: 19px;
  height: 19px;
  border-radius: 999px;
}

.icon-phone::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 7px;
  height: 9px;
  border-right: 2.2px solid currentColor;
  border-bottom: 2.2px solid currentColor;
  border-radius: 0 0 7px 0;
  transform: rotate(24deg);
}

.mobile-menu {
  position: fixed;
  top: 86px;
  right: 18px;
  z-index: 45;
  display: none;
  width: min(330px, calc(100vw - 36px));
  padding: 10px;
  border: 1px solid rgba(77, 36, 32, 0.12);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.96);
  box-shadow: 0 24px 60px rgba(77, 36, 32, 0.22);
  backdrop-filter: blur(18px);
  transform-origin: top right;
  animation: menuDrop 180ms ease both;
}

.mobile-menu.is-open {
  display: grid;
}

.mobile-menu a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.mobile-menu a + a {
  border-top: 1px solid rgba(77, 36, 32, 0.1);
}

.mobile-menu a:hover {
  background: #f5e8dc;
  color: var(--brown);
  transform: translateX(4px);
}

.mobile-menu a:active {
  transform: translateX(2px) scale(0.99);
}

@keyframes menuDrop {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  background: var(--brown);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  opacity: 0;
  pointer-events: none;
  transition: opacity 600ms ease;
}

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

.hero-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(7%) scale(1.08);
}

.hero-slide.is-active img {
  animation: heroImageIn 1600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(36, 24, 23, 0.56), rgba(36, 24, 23, 0.72)),
    radial-gradient(circle at top, rgba(216, 173, 60, 0.18), transparent 45%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 76px);
  padding: 46px 28px 34px;
  text-align: center;
  color: white;
}

.hero-slide.is-active .eyebrow,
.hero-slide.is-active h1,
.hero-slide.is-active .hero-subtitle,
.hero-slide.is-active .hero-lead,
.hero-slide.is-active .hero-price,
.hero-slide.is-active .hero-cta {
  animation: heroTextIn 1200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-slide.is-active h1 {
  animation-delay: 120ms;
}

.hero-slide.is-active .hero-lead {
  animation-delay: 300ms;
}

.hero-slide.is-active .hero-subtitle {
  animation-delay: 220ms;
}

.hero-slide.is-active .hero-price {
  animation-delay: 420ms;
}

.hero-slide.is-active .hero-cta {
  animation-delay: 540ms;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 14px;
  background: rgba(200, 113, 91, 0.3);
  color: #ffd0bf;
  font-weight: 800;
}

.hero h1 {
  max-width: 740px;
  margin: 0;
  font-size: clamp(40px, 8vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-subtitle {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--gold);
  font-size: clamp(23px, 4vw, 34px);
  font-weight: 700;
  line-height: 1.35;
}

.hero-lead {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 3vw, 25px);
  font-weight: 400;
  line-height: 1.75;
}

.hero-price {
  display: grid;
  gap: 6px;
  width: min(260px, 72vw);
  margin: 28px 0;
  padding: 26px 18px;
  border: 1px solid rgba(255, 208, 191, 0.35);
  border-radius: 22px;
  background: rgba(77, 36, 32, 0.42);
  backdrop-filter: blur(10px);
}

.hero-price strong {
  color: var(--gold);
  font-size: 26px;
}

.hero-price span {
  color: rgba(255, 255, 255, 0.86);
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: min(600px, calc(100vw - 56px));
  min-height: 64px;
  border-radius: 14px;
  background: var(--gold);
  color: #201713;
  font-size: 21px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.28);
  filter: saturate(1.06);
}

.hero-cta:active {
  transform: translateY(1px) scale(0.99);
}

.hero-arrow {
  position: absolute;
  top: 52%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(36, 24, 23, 0.46);
  color: white;
  font-size: 32px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(10px);
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-arrow:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--ink);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(36, 24, 23, 0.38);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  transform: translateX(-50%);
}

.hero-dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  transition: width 220ms ease, background 220ms ease;
}

.hero-dot.is-active {
  width: 42px;
  background: rgba(255, 255, 255, 0.2);
}

.hero-dot.is-active::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: var(--gold);
  transform-origin: left center;
  animation: heroDotProgress 7000ms linear forwards;
}

@keyframes heroImageIn {
  from {
    transform: translateX(7%) scale(1.08);
  }

  to {
    transform: translateX(-2%) scale(1.04);
  }
}

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateX(-42px);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes heroDotProgress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.brand-story,
.delivery,
.faq,
.product-family {
  max-width: 1160px;
  margin: 0 auto;
  padding: 76px 22px;
}

.brand-story,
.product-family,
.delivery,
.faq {
  position: relative;
}

.brand-story {
  text-align: center;
}

.section-kicker {
  border-color: rgba(200, 113, 91, 0.24);
  background: #fff3ea;
  color: var(--brown-2);
}

.brand-story h2,
.section-heading h2,
.delivery h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(31px, 6vw, 54px);
  line-height: 1.08;
  letter-spacing: 0;
}

.brand-story p,
.delivery p {
  max-width: 780px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.category-strip {
  display: flex;
  gap: 12px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 22px 40px;
  overflow-x: auto;
}

.category-strip a {
  flex: 0 0 auto;
  padding: 12px 18px;
  border: 1px solid rgba(77, 36, 32, 0.16);
  border-radius: 999px;
  background: var(--cream-2);
  color: var(--brown);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.category-strip a:hover,
.category-strip a:focus-visible {
  transform: translateY(-2px);
  background: var(--brown);
  color: white;
  box-shadow: 0 14px 28px rgba(77, 36, 32, 0.16);
}

.category-strip a:active {
  transform: translateY(1px) scale(0.98);
}

.section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 34px;
  text-align: center;
}

.family-panel {
  padding: clamp(14px, 2.6vw, 24px);
  border: 1px solid rgba(77, 36, 32, 0.1);
  border-radius: 8px;
  background: rgba(255, 254, 250, 0.8);
  box-shadow: 0 16px 42px rgba(77, 36, 32, 0.06);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.family-panel + .family-panel {
  margin-top: 28px;
}

.family-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 113, 91, 0.22);
  box-shadow: 0 24px 60px rgba(77, 36, 32, 0.12);
}

.family-intro {
  display: flex;
  gap: clamp(10px, 2vw, 16px);
  align-items: center;
  margin-bottom: clamp(16px, 2.8vw, 24px);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(77, 36, 32, 0.1);
}

.family-number {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(48px, 8vw, 72px);
  width: clamp(48px, 8vw, 72px);
  height: clamp(48px, 8vw, 72px);
  overflow: hidden;
  border: 1px solid rgba(77, 36, 32, 0.1);
  border-radius: 999px;
  background: #fffaf5;
  color: var(--brown);
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(77, 36, 32, 0.08);
}

.family-number img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-intro h3 {
  margin: 0 0 8px;
  color: var(--brown);
  font-size: clamp(24px, 4.2vw, 34px);
  line-height: 1.08;
}

.family-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1.8vw, 18px);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(77, 36, 32, 0.12);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 12px 28px rgba(77, 36, 32, 0.08);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.product-media {
  position: relative;
  display: block;
  width: 100%;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--warm);
  cursor: pointer;
}

.product-card > img,
.product-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--warm);
  transition: transform 450ms cubic-bezier(0.22, 1, 0.36, 1), filter 220ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(200, 113, 91, 0.3);
  box-shadow: 0 24px 54px rgba(77, 36, 32, 0.16);
}

.product-card:hover > img,
.product-card:focus-within > img,
.product-card:hover .product-media img,
.product-card:focus-within .product-media img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.product-card:active {
  transform: translateY(-2px) scale(0.995);
}

.product-card-body {
  display: grid;
  gap: clamp(8px, 1.4vw, 12px);
  padding: clamp(10px, 1.8vw, 18px);
}

.tier-badge {
  position: absolute;
  top: 10px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
  width: fit-content;
  max-width: calc(100% - 16px);
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff1e8;
  color: var(--brown-2);
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card h4 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(14px, 2.1vw, 20px);
  line-height: 1.18;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.price-line {
  display: grid;
  gap: 6px;
}

.price-stack {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.price-line strong {
  color: var(--brown);
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1;
}

.compare-price {
  color: #a19189;
  font-size: 15px;
  text-decoration: line-through;
}

.shipping-note,
.price-line > span:not(.compare-price) {
  color: var(--accent);
  font-size: clamp(10px, 1.4vw, 13px);
  font-weight: 900;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(6px, 1.2vw, 10px);
}

.card-actions button,
.primary-action,
.cart-summary button {
  min-height: 46px;
  border-radius: 8px;
  font-weight: 900;
  font-size: clamp(12px, 1.4vw, 15px);
  transition: transform 170ms ease, box-shadow 170ms ease, background 170ms ease, color 170ms ease;
}

.card-actions button[data-add],
.primary-action,
.cart-summary button {
  background: var(--brown);
  border: 0;
  color: white;
  box-shadow: 0 12px 24px rgba(77, 36, 32, 0.16);
  order: 2;
}

.card-actions button[data-view] {
  border: 1px solid rgba(77, 36, 32, 0.18);
  background: var(--cream);
  color: var(--brown);
  order: 1;
}

.card-actions button:hover,
.card-actions button:focus-visible,
.primary-action:hover,
.primary-action:focus-visible,
.cart-summary button:hover,
.cart-summary button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(77, 36, 32, 0.18);
}

.card-actions button[data-view]:hover,
.card-actions button[data-view]:focus-visible {
  background: var(--brown);
  color: white;
}

.card-actions button:active,
.primary-action:active,
.cart-summary button:active {
  transform: translateY(1px) scale(0.98);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(77, 36, 32, 0.14);
}

.trust-band div {
  display: grid;
  gap: 8px;
  padding: 34px 24px;
  background: var(--brown);
  color: white;
  text-align: center;
  transition: background 200ms ease, transform 200ms ease;
}

.trust-band div:hover {
  background: #5c2c27;
  transform: translateY(-2px);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.product-card.reveal {
  transform: translateY(28px) scale(0.985);
}

.product-card.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.trust-band strong {
  color: var(--gold);
  font-size: 20px;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.faq {
  display: grid;
  gap: 14px;
}

.faq details {
  border: 1px solid rgba(77, 36, 32, 0.14);
  border-radius: 8px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.faq details:hover {
  transform: translateY(-2px);
  border-color: rgba(200, 113, 91, 0.24);
  box-shadow: 0 16px 34px rgba(77, 36, 32, 0.1);
}

.faq summary {
  padding: 18px;
  color: var(--brown);
  font-weight: 900;
  cursor: pointer;
}

.faq p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: grid;
  place-items: center;
  gap: 16px;
  padding: 50px 22px;
  background: var(--white);
  color: var(--brown);
  text-align: center;
}

.site-footer img {
  width: min(280px, 78vw);
  border-radius: 8px;
}

.site-footer p {
  margin: 8px 0 0;
  font-weight: 900;
  font-size: 22px;
}

.site-footer span {
  color: var(--muted);
}

.parent-company {
  display: grid;
  place-items: center;
  gap: 12px;
  width: min(420px, 100%);
  margin: 2px 0 8px;
  padding: 18px 22px;
  border: 1px solid rgba(77, 36, 32, 0.08);
  border-radius: 8px;
  background: #fffefa;
  box-shadow: 0 16px 34px rgba(77, 36, 32, 0.07);
}

.parent-company span {
  color: var(--brown);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.parent-company img {
  width: min(210px, 70vw);
  border-radius: 0;
  mix-blend-mode: multiply;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(1060px, 100%);
  margin-top: 12px;
}

.contact-grid a {
  display: grid;
  gap: 7px;
  min-height: 96px;
  align-content: center;
  padding: 16px;
  border: 1px solid rgba(77, 36, 32, 0.12);
  border-radius: 8px;
  background: #fff3ea;
  color: var(--brown);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.contact-grid a:hover,
.contact-grid a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(200, 113, 91, 0.24);
  background: #fff8f0;
  box-shadow: 0 18px 36px rgba(77, 36, 32, 0.12);
}

.contact-grid a:active {
  transform: translateY(1px) scale(0.99);
}

.contact-grid strong {
  font-size: 14px;
}

.contact-grid span {
  overflow-wrap: anywhere;
  font-size: 13px;
}

.modal,
.checkout-panel,
.scrim {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
}

.scrim {
  z-index: 70;
  background: rgba(36, 24, 23, 0.48);
}

.modal.is-open,
.checkout-panel.is-open,
.scrim.is-open {
  display: grid;
}

.modal,
.checkout-panel {
  place-items: center;
  padding: 16px;
}

.modal-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  width: min(980px, 100%);
  max-height: calc(100vh - 32px);
  overflow: auto;
  border-radius: 8px;
  background: white;
  box-shadow: var(--shadow);
}

.close-button,
.cart-header button {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(36, 24, 23, 0.78);
  color: white;
  font-weight: 900;
}

.modal-gallery {
  position: relative;
  min-height: 420px;
  background: var(--warm);
}

.modal-gallery img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.gallery-controls {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  border-radius: 999px;
  background: rgba(36, 24, 23, 0.62);
  color: white;
}

.gallery-controls button,
.quantity-row button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.gallery-controls button:hover,
.gallery-controls button:focus-visible,
.quantity-row button:hover,
.quantity-row button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.18);
}

.gallery-controls button:active,
.quantity-row button:active {
  transform: scale(0.94);
}

.modal-copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 42px 30px 30px;
}

.tier-pill {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1e8;
  color: var(--brown-2);
  font-size: 13px;
  font-weight: 900;
}

.modal-copy h2 {
  margin: 0;
  color: var(--brown);
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.05;
}

.modal-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.modal-copy ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.checkout-card {
  width: min(620px, 100%);
  max-height: min(86vh, 760px);
  overflow: auto;
  border: 1px solid rgba(77, 36, 32, 0.14);
  border-radius: 8px;
  background: rgba(255, 250, 245, 0.98);
  box-shadow: 0 28px 80px rgba(77, 36, 32, 0.22);
}

.checkout-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 24px 10px;
}

.checkout-header h2 {
  margin: 10px 0 0;
  color: var(--brown);
  font-size: clamp(28px, 6vw, 42px);
  line-height: 1.08;
}

.checkout-header button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--brown);
  color: white;
  font-size: 18px;
  font-weight: 900;
  cursor: pointer;
}

.checkout-form {
  display: grid;
  gap: 14px;
  padding: 14px 24px 24px;
}

.checkout-form label {
  display: grid;
  gap: 8px;
  color: var(--brown);
  font-size: 13px;
  font-weight: 800;
}

.checkout-form input {
  min-height: 46px;
  width: 100%;
  border: 1px solid rgba(77, 36, 32, 0.16);
  border-radius: 8px;
  background: #fffefa;
  color: var(--brown);
  padding: 0 14px;
  font: inherit;
  outline: 0;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.checkout-form input:focus {
  border-color: rgba(216, 173, 60, 0.9);
  box-shadow: 0 0 0 4px rgba(216, 173, 60, 0.16);
}

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

.checkout-note,
.checkout-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.checkout-status {
  min-height: 22px;
  color: var(--brown);
  font-weight: 800;
}

.modal-delivery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  border-radius: 8px;
  background: var(--cream);
}

.modal-delivery strong {
  color: var(--brown);
  font-size: 26px;
}

.modal-delivery span {
  color: var(--accent);
  font-weight: 900;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quantity-row span {
  min-width: 32px;
  text-align: center;
  font-weight: 900;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  flex-direction: column;
  width: min(430px, 100vw);
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateX(105%);
  transition: transform 240ms ease;
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-header {
  position: relative;
  padding: 24px;
  border-bottom: 1px solid rgba(77, 36, 32, 0.12);
}

.cart-header h2 {
  margin: 0;
  color: var(--brown);
}

.cart-items {
  flex: 1;
  overflow: auto;
  padding: 18px;
}

.cart-item {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(77, 36, 32, 0.1);
  transition: background 160ms ease, transform 160ms ease;
}

.cart-item:hover {
  background: rgba(251, 243, 232, 0.7);
  transform: translateX(-2px);
}

.cart-item img {
  width: 78px;
  height: 78px;
  border-radius: 8px;
  object-fit: cover;
}

.cart-item h3 {
  margin: 0 0 6px;
  color: var(--brown);
  font-size: 16px;
}

.cart-item p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
}

.cart-item button {
  border: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 900;
  padding: 0;
}

.cart-summary {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-top: 1px solid rgba(77, 36, 32, 0.12);
}

.cart-summary div {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.cart-summary strong,
.total-row {
  color: var(--brown);
}

.total-row {
  font-size: 20px;
  font-weight: 900;
}

@media (min-width: 760px) {
  .hero-content {
    padding-inline: 80px;
  }
}

@media (max-width: 820px) {
  .trust-band,
  .modal-panel {
    grid-template-columns: 1fr;
  }

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

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

  .family-panel {
    padding: 14px;
  }

  .hero h1 {
    font-size: clamp(34px, 10vw, 50px);
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-subtitle {
    font-size: 22px;
  }
}

@media (max-width: 520px) {
  .site-header {
    min-height: 72px;
    padding: 10px 14px;
  }

  body {
    padding-top: 72px;
  }

  .brand {
    min-width: 120px;
    width: 34vw;
  }

  .cart-button,
  .menu-button {
    width: 44px;
    height: 44px;
  }

  .whatsapp-button {
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    font-size: 14px;
  }

  .icon-phone {
    width: 17px;
    height: 17px;
  }

  .mobile-menu {
    top: 80px;
    right: 12px;
    width: min(300px, calc(100vw - 24px));
  }

  .hero {
    min-height: calc(100vh - 72px);
  }

  .hero-content {
    min-height: calc(100vh - 72px);
    padding: 42px 22px 26px;
  }

  .hero-arrow {
    width: 46px;
    height: 46px;
    font-size: 26px;
  }

  .hero-prev {
    left: 12px;
  }

  .hero-next {
    right: 12px;
  }

  .hero-dots {
    bottom: 14px;
  }

  .product-family {
    padding-inline: 10px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .family-panel + .family-panel {
    margin-top: 18px;
  }

  .family-intro {
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 12px;
  }

  .family-number {
    flex-basis: 46px;
    width: 46px;
    height: 46px;
  }

  .family-intro h3 {
    margin-bottom: 4px;
    font-size: 24px;
  }

  .family-intro p {
    font-size: 13px;
    line-height: 1.35;
  }

  .product-grid {
    gap: 6px;
  }

  .product-card {
    min-width: 0;
  }

  .product-card > img,
  .product-media img {
    aspect-ratio: 1 / 1.08;
  }

  .tier-badge {
    top: 6px;
    padding: 5px 7px;
    font-size: 8.5px;
  }

  .product-card-body {
    gap: 6px;
    padding: 8px 6px 7px;
  }

  .product-card h4,
  .product-card p,
  .compare-price {
    display: none;
  }

  .price-stack {
    justify-content: center;
  }

  .price-line strong {
    width: 100%;
    text-align: center;
    font-size: clamp(15px, 4vw, 19px);
  }

  .shipping-note,
  .price-line > span:not(.compare-price) {
    text-align: center;
    font-size: 8.5px;
  }

  .card-actions {
    grid-template-columns: 1fr 1fr;
    gap: 5px;
  }

  .card-actions button {
    min-height: 38px;
    padding: 0 4px;
    font-size: clamp(8.5px, 2.5vw, 11px);
  }

  .modal-gallery,
  .modal-gallery img {
    min-height: 330px;
  }

  .modal-copy {
    padding: 30px 20px 22px;
  }

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