/* =====================================================
   MAYTE CUPCAKES — style.css
   Paleta boutique cálida + diseño responsive
   VERSIÓN FINAL: header transparente + logo grande + foto horizontal
   ===================================================== */

:root {
  --color-crema: #FAF3E8;
  --color-crema-oscuro: #F0E4D3;
  --color-terracota: #C97B4A;
  --color-terracota-oscuro: #A85F35;
  --color-chocolate: #4A2E1F;
  --color-dorado: #D9A441;
  --color-blanco: #FFFFFF;
  --color-texto: #3A2C22;
  --color-texto-suave: #6B584A;
  --color-whatsapp: #25D366;
  --color-whatsapp-oscuro: #1DA851;

  --font-display: "Playfair Display", serif;
  --font-body: "Poppins", sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-soft: 0 2px 10px rgba(74, 46, 31, 0.08);
  --shadow-hover: 0 6px 18px rgba(74, 46, 31, 0.12);

  /* Barra y header más grandes para que el logo resalte */
  --topbar-h: 40px;
  --header-h: 100px;
  --container-max: 1200px;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--topbar-h) + var(--header-h));
}

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-texto);
  background-color: var(--color-crema);
  line-height: 1.6;
}

/* Textura sutil de papel artesanal */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  color: var(--color-chocolate);
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 20px;
  position: relative;
  z-index: 1;
}

/* ===================== TITULOS ===================== */
.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracota);
  margin-bottom: 8px;
}

.eyebrow--center {
  display: block;
  text-align: center;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  text-align: center;
  margin-bottom: 40px;
}

/* =====================================================
   TOPBAR + HEADER — FIJOS Y TRANSPARENTES SOBRE EL HERO
   ===================================================== */

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  height: var(--topbar-h);
  background: rgba(74, 46, 31, 0.28);
  color: var(--color-blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding-inline: 12px;
  font-size: clamp(0.72rem, 1.6vw, 0.85rem);
  text-align: center;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.topbar__text strong {
  color: var(--color-dorado);
}

.topbar__btn {
  color: var(--color-blanco);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.72rem;
  white-space: nowrap;
  transition: background 0.2s;
}

.topbar__btn:hover {
  background: rgba(255, 255, 255, 0.32);
}

/* ===================== MODAL ===================== */
.zone-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(74, 46, 31, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.zone-modal[hidden] {
  display: none;
}

.zone-modal__content {
  background: var(--color-blanco);
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 360px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.zone-modal__content h3 {
  margin-bottom: 16px;
  font-size: 1.2rem;
}

.zone-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.5rem;
  color: var(--color-texto-suave);
}

.zone-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zone-option {
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: var(--color-crema);
  font-weight: 500;
  transition: background 0.2s;
}

.zone-option:hover {
  background: var(--color-crema-oscuro);
}

/* ===================== HEADER ===================== */
.site-header {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  z-index: 1100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 243, 232, 0.9);
  border-bottom-color: rgba(74, 46, 31, 0.12);
  box-shadow: var(--shadow-soft);
}

.site-header.is-scrolled .nav-menu a,
.site-header.is-scrolled .nav-toggle span {
  color: var(--color-chocolate);
}

body {
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

.hero {
  margin-top: calc(-1 * (var(--topbar-h) + var(--header-h)));
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 500;
}

.nav-menu a {
  color: var(--color-blanco);
  transition: color 0.25s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--color-dorado);
}

.btn-nav-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-blanco) !important;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: background 0.2s;
}

.btn-nav-whatsapp:hover {
  background: var(--color-whatsapp-oscuro);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  z-index: 1300;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--color-blanco);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s, background 0.25s;
}

body.has-solid-header .site-header {
  background: rgba(250, 243, 232, 0.9);
  border-bottom-color: rgba(74, 46, 31, 0.12);
  box-shadow: var(--shadow-soft);
}

body.has-solid-header .nav-menu a,
body.has-solid-header .nav-toggle span {
  color: var(--color-chocolate);
}

body.has-solid-header .nav-menu a:hover,
body.has-solid-header .nav-menu a.active {
  color: var(--color-terracota);
}

/* ===================== LOGO — MÁS GRANDE Y DESTACADO ===================== */
.site-header .logo {
  width: 420px;
  height: var(--header-h);
}

.site-header .logo img {
  width: 420px !important;
  height: 100px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: left center;
}

/* ===================== BOTONES ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, background 0.2s;
}

.btn--primary {
  background: var(--color-terracota);
  color: var(--color-blanco);
}

.btn--primary:hover {
  background: var(--color-terracota-oscuro);
  transform: translateY(-2px);
}

.btn--whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-blanco);
}

.btn--whatsapp:hover {
  background: var(--color-whatsapp-oscuro);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
  margin-top: 24px;
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(74, 46, 31, 0.55) 0%,
    rgba(74, 46, 31, 0.35) 50%,
    rgba(74, 46, 31, 0.75) 100%
  );
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--color-blanco);
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

.hero__title {
  color: var(--color-blanco);
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 18px;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  margin-bottom: 32px;
  color: var(--color-crema);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ===================== CATEGORIAS DEL INICIO ===================== */
.quick-categories {
  padding: 48px 0;
}

.quick-categories__scroll {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}

.category-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 110px;
  flex-shrink: 0;
  scroll-snap-align: center;
  text-align: center;
}

.category-icon__circle {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff 0%, #fff7ed 100%);
  color: var(--color-terracota);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 5px 14px rgba(74, 46, 31, 0.12),
    inset 0 0 0 1px rgba(217, 164, 65, 0.18);
  border: 2px solid rgba(201, 123, 74, 0.22);
  transition: border-color 0.25s, transform 0.25s, color 0.25s, box-shadow 0.25s;
}

.category-icon__circle svg {
  width: 52px;
  height: 52px;
  display: block;
  fill: none !important;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-icon:hover .category-icon__circle {
  color: var(--color-chocolate);
  border-color: var(--color-dorado);
  transform: translateY(-6px) scale(1.04);
  box-shadow:
    0 9px 20px rgba(74, 46, 31, 0.16),
    inset 0 0 0 2px rgba(217, 164, 65, 0.3);
}

.category-icon__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-chocolate);
}

.category-icon:nth-child(1) .category-icon__circle {
  color: #b96843;
}

.category-icon:nth-child(2) .category-icon__circle {
  color: #d87591;
}

.category-icon:nth-child(3) .category-icon__circle {
  color: #c59a43;
}

.category-icon:nth-child(4) .category-icon__circle {
  color: #8c6aaa;
}

.category-icon:nth-child(1):hover .category-icon__circle {
  background: #fff0e7;
}

.category-icon:nth-child(2):hover .category-icon__circle {
  background: #fff0f5;
}

.category-icon:nth-child(3):hover .category-icon__circle {
  background: #fff9e7;
}

.category-icon:nth-child(4):hover .category-icon__circle {
  background: #f5efff;
}

/* =====================================================
   SECCIÓN QUIÉN ES MAYTE — FOTO EN FORMATO HORIZONTAL
   ===================================================== */

.story {
  padding: 90px 0;
}

.story__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.story__image {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: visible;
}

/* Antes: aspect-ratio 9/16 (vertical). Ahora: recuadro horizontal tipo
   tarjeta 4:3, recortando la foto con object-fit: cover para que se vea
   completa y proporcionada sin deformarse */
.story__image img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 20%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

.story__badge {
  position: absolute;
  left: -18px;
  bottom: 18px;
  z-index: 2;
  background: var(--color-dorado);
  color: var(--color-chocolate);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-soft);
}

.story__text {
  max-width: 680px;
}

.story__text h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 20px;
}

.story__text p {
  color: var(--color-texto-suave);
  margin-bottom: 18px;
  line-height: 1.7;
}

.link-underline {
  font-weight: 600;
  color: var(--color-terracota);
  border-bottom: 2px solid var(--color-terracota);
  padding-bottom: 2px;
}

/* ===================== PROCESO ===================== */
.process {
  padding: 80px 0;
  background: var(--color-crema-oscuro);
}

.process__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.process__step {
  background: var(--color-blanco);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.process__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-terracota);
  color: var(--color-blanco);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process__step h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.process__step p {
  color: var(--color-texto-suave);
  font-size: 0.92rem;
}

/* ===================== FAQ ===================== */
.faq {
  padding: 80px 0;
}

.faq__list {
  max-width: 760px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-blanco);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  font-weight: 600;
  text-align: left;
}

.faq-item__icon {
  transition: transform 0.25s;
  font-size: 1.2rem;
  color: var(--color-terracota);
}

.faq-item.is-open .faq-item__icon {
  transform: rotate(45deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 22px;
  color: var(--color-texto-suave);
  font-size: 0.92rem;
}

.faq-item.is-open .faq-item__answer {
  max-height: 240px;
  padding: 0 22px 18px;
}

/* ===================== FOOTER ===================== */
.site-footer {
  background: var(--color-chocolate);
  color: var(--color-crema);
  padding: 56px 0 24px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.logo--footer {
  margin-bottom: 12px;
}

.logo--footer img {
  width: 200px;
  max-height: 60px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.site-footer p {
  color: rgba(250, 243, 232, 0.75);
  font-size: 0.9rem;
}

.site-footer h4 {
  color: var(--color-crema);
  font-size: 1rem;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.site-footer ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer ul a,
.site-footer ul li {
  color: rgba(250, 243, 232, 0.8);
  font-size: 0.9rem;
}

.footer__copy {
  text-align: center;
  border-top: 1px solid rgba(250, 243, 232, 0.15);
  padding-top: 20px;
  font-size: 0.8rem;
  color: rgba(250, 243, 232, 0.6);
}

/* =====================================================
   MENU.HTML — CATALOGO
   ===================================================== */
.menu-hero {
  padding: 56px 0 24px;
  text-align: center;
}

.menu-hero p {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--color-texto-suave);
}

.shop {
  padding: 40px 0 90px;
}

.shop__layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

.shop__sidebar-inner {
  position: sticky;
  top: calc(var(--topbar-h) + var(--header-h) + 24px);
  width: 260px;
  background: var(--color-blanco);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.shop__sidebar-title {
  font-size: 1rem;
  margin-bottom: 14px;
}

.shop__sidebar-title--spaced {
  margin-top: 24px;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-list li {
  width: 100%;
}

.filter-btn {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-texto-suave);
  transition: background 0.2s, color 0.2s;
}

.filter-btn:hover {
  background: var(--color-crema);
  color: var(--color-terracota);
}

.filter-btn.is-active {
  background: var(--color-terracota);
  color: var(--color-blanco);
}

.shop__sidebar .filter-btn svg {
  width: 25px !important;
  height: 25px !important;
  min-width: 25px;
  max-width: 25px;
  flex: 0 0 25px;
  display: block;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shop__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.shop__count {
  font-size: 0.9rem;
  color: var(--color-texto-suave);
}

.shop__sort select {
  border: 1px solid rgba(74, 46, 31, 0.15);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  background: var(--color-blanco);
  font-family: inherit;
  font-size: 0.85rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.product-card {
  position: relative;
  background: var(--color-blanco);
  border: 1px solid rgba(74, 46, 31, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s, border-color 0.25s;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-terracota);
}

.product-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: var(--color-dorado);
  color: var(--color-chocolate);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
}

.product-card__tag--gift {
  background: var(--color-terracota);
  color: var(--color-blanco);
}

.product-card__image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #fff7ed, #f1dfca);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s;
}

.product-card:hover .product-card__image img {
  transform: scale(1.06);
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex-grow: 1;
}

.product-card__category {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-terracota);
  font-weight: 600;
}

.product-card__name {
  font-size: 1.15rem;
  font-family: var(--font-display);
  color: var(--color-chocolate);
}

.product-card__desc {
  font-size: 0.9rem;
  color: var(--color-texto-suave);
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 4px;
}

.product-card__price-current {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--color-chocolate);
}

.product-card__price-old {
  font-size: 0.85rem;
  color: var(--color-texto-suave);
  text-decoration: line-through;
}

.product-card__footer {
  padding: 0 16px 16px;
}

.product-card__btn {
  width: 100%;
  background: var(--color-whatsapp);
  color: var(--color-blanco);
  padding: 10px;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  transition: background 0.2s;
}

.product-card__btn:hover {
  background: var(--color-whatsapp-oscuro);
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--color-texto-suave);
}

/* =====================================================
   HERO CON SLIDER AUTOMÁTICO
   ===================================================== */

.hero--slider {
  min-height: 92vh;
  position: relative;
  isolation: isolate;
}

.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  background: #8d796d;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s ease, visibility 0.9s ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.hero-slide.is-active img {
  transform: scale(1.08);
}

.hero--slider .hero__overlay {
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(48, 30, 22, 0.66) 0%,
    rgba(48, 30, 22, 0.34) 48%,
    rgba(48, 30, 22, 0.54) 100%
  );
}

.hero-slider__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--color-blanco);
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 1.4rem;
  transform: translateY(-50%);
  transition: background 0.25s, transform 0.25s;
}

.hero-slider__arrow:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-50%) scale(1.06);
}

.hero-slider__arrow--prev {
  left: 24px;
}

.hero-slider__arrow--next {
  right: 24px;
}

.hero-slider__dots {
  position: absolute;
  z-index: 5;
  bottom: 28px;
  left: 50%;
  display: flex;
  gap: 9px;
  transform: translateX(-50%);
}

.hero-slider__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.75);
  transition: background 0.25s, transform 0.25s;
}

.hero-slider__dot.is-active {
  background: var(--color-dorado);
  transform: scale(1.3);
}

@media (max-width: 700px) {
  .hero--slider {
    min-height: 76vh;
  }

  .hero-slide img {
    object-position: center;
  }

  .hero-slider__arrow {
    width: 36px;
    height: 36px;
    font-size: 1.1rem;
  }

  .hero-slider__arrow--prev {
    left: 12px;
  }

  .hero-slider__arrow--next {
    right: 12px;
  }

  .hero-slider__dots {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide img,
  .hero-slider__arrow,
  .hero-slider__dot {
    transition: none;
  }
}

/* =====================================================
   IMAGE MODAL (lightbox)
   ===================================================== */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.8);
}

.image-modal[hidden] {
  display: none;
}

.image-modal__content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.image-modal__content img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
}

.image-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--color-blanco);
  font-size: 2rem;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 960px) {
  .shop__layout {
    grid-template-columns: 1fr;
  }

  .shop__sidebar-inner {
    position: static;
    padding: 16px;
  }

  .shop__sidebar .filter-list {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .shop__sidebar .filter-list li {
    width: auto;
    flex: 0 0 auto;
  }

  .shop__sidebar .filter-btn {
    width: auto;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  :root {
    --header-h: 84px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    min-height: 100vh;
    width: min(78vw, 320px);
    background: var(--color-crema);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    z-index: 1250;
  }

  .nav-menu.is-open {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .nav-menu a,
  .nav-menu .btn-nav-whatsapp {
    color: var(--color-chocolate) !important;
  }

  .nav-toggle span {
    background: var(--color-blanco);
  }

  .site-header.is-scrolled .nav-toggle span,
  body.has-solid-header .nav-toggle span {
    background: var(--color-chocolate);
  }

  .nav-toggle.is-active {
    z-index: 1300;
  }

  .nav-toggle.is-active span {
    background: var(--color-chocolate) !important;
  }

  .nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .story__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .story__image {
    order: -1;
    width: 100%;
  }

  .story__image img {
    max-width: 100%;
    aspect-ratio: 16 / 10;
  }

  .site-header .logo {
    width: 300px;
  }

  .site-header .logo img {
    width: 300px !important;
    height: 84px !important;
    transform: translateY(2px);
  }
}

@media (max-width: 780px) {
  .process__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .quick-categories__scroll {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
  }
}

@media (max-width: 480px) {
  :root {
    --topbar-h: 34px;
    --header-h: 68px;
  }

  .topbar__text {
    display: none;
  }

  .topbar {
    justify-content: space-between;
    padding-inline: 16px;
  }

  .topbar::before {
    content: "🚚 Delivery en Lima Metropolitana";
    font-size: 0.7rem;
  }

.site-header .logo {
  width: 380px;
  height: var(--header-h);
}

.site-header .logo img {
  width: 380px !important;
  height: 92px !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain;
  object-position: left center;
  transform: translateY(4px);
}

  .story__image img {
    aspect-ratio: 4 / 3;
  }

  .category-icon {
    width: 96px;
  }

  .category-icon__circle {
    width: 82px;
    height: 82px;
  }

  .category-icon__circle svg {
    width: 44px;
    height: 44px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
    gap: 16px;
  }

  .hero {
    min-height: 80vh;
  }

  .shop__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* =====================================================
   CORRECCIÓN RESPONSIVE DEL CATÁLOGO EN CELULAR
   ===================================================== */

.container,
.shop,
.shop__layout,
.shop__content {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.shop__layout {
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 961px) {
  .shop__layout {
    grid-template-columns: 260px 1fr;
  }
}

@media (max-width: 600px) {
  .shop {
    width: 100%;
    padding: 24px 0 60px;
  }

  .shop > .container {
    padding-inline: 12px;
  }

  .shop__layout {
    display: block;
    width: 100%;
  }

  .shop__content {
    width: 100%;
    min-width: 0;
  }

  .product-grid {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
  }

  .product-card {
    width: 100%;
    min-width: 0;
    max-width: 100%;
  }

  .product-card__image {
    width: 100%;
    aspect-ratio: 4 / 3;
  }

  .product-card__image img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-card__body,
  .product-card__footer {
    min-width: 0;
  }
}

/* =====================================================
   MEJORA SECCIÓN "QUIÉN ES MAYTE"
   Pega este bloque AL FINAL de tu style.css
   (sobrescribe .story__text de forma segura, sin tocar el resto)
   ===================================================== */

/* Texto más grande y con mejor jerarquía */
.story__text h2 {
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  margin-bottom: 22px;
}

.story__text p {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--color-texto-suave);
  margin-bottom: 20px;
}

.eyebrow {
  font-size: 0.86rem;
  letter-spacing: 0.14em;
}

/* Cita destacada estilo testimonio */
.story__quote {
  position: relative;
  margin: 28px 0 32px;
  padding: 18px 24px 18px 28px;
  border-left: 3px solid var(--color-dorado);
  background: rgba(217, 164, 65, 0.08);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-chocolate);
}

.story__quote cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-terracota);
}

/* Fila de cifras de confianza */
.story__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(74, 46, 31, 0.12);
}

.story__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 110px;
}

.story__stat-number {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 2.6vw, 2.3rem);
  color: var(--color-terracota);
  line-height: 1;
}

.story__stat-label {
  font-size: 0.82rem;
  color: var(--color-texto-suave);
  font-weight: 500;
}

/* Botón CTA en vez de solo link subrayado */
.story__cta {
  display: inline-flex;
  margin-top: 4px;
}

@media (max-width: 600px) {
  .story__stats {
    gap: 20px;
  }

  .story__stat {
    min-width: 90px;
  }

  .story__quote {
    font-size: 1.05rem;
    padding: 16px 18px 16px 22px;
  }
}