*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --cream: #F7F1E8;
  --cream-dark: #EDE4D4;
  --mustard: #C4A35A;
  --mustard-dark: #A8843A;
  --brown: #5C4033;
  --brown-soft: #8B6F5C;
  --olive: #6B7F5A;
  --white: #FFFCF0;
  --text: #3D2C22;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--cream-dark);
  color: var(--text);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 24px 0 40px;
}

.page {
  width: 100%;
  max-width: 480px;
  background: var(--cream);
  position: relative;
  border-radius: 16px;
  overflow: visible;
  box-shadow: 0 24px 60px rgba(92, 64, 51, 0.18);
}

.view {
  display: none;
}

.view.active {
  display: block;
}


/* =========================
HOME
========================= */

.hero {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(61, 44, 34, 0.15) 0%,
    rgba(61, 44, 34, 0.05) 40%,
    rgba(247, 241, 232, 0.85) 100%
  );
}

.brand-banner {
  position: relative;
  z-index: 2;
  margin: -72px 28px 0 20px;
  background: rgba(255, 252, 245, 0.28);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  padding: 16px 40px 18px 16px;
  text-align: center;
  box-shadow:
    0 8px 32px rgba(92, 64, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.brand-banner .avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mustard);
  box-shadow: 0 4px 12px rgba(92, 64, 51, 0.15);
  margin: -44px auto 10px;
  display: block;
  background: var(--cream);
}

.brand-banner .label {
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mustard-dark);
  font-weight: 600;
  margin-bottom: 4px;
}

.brand-banner h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.5px;
  line-height: 1.15;
}

.brand-banner .tagline {
  font-size: 13px;
  color: var(--brown-soft);
  margin-top: 6px;
  font-style: italic;
}


/* =========================
REDES LATERALES
========================= */

.socials {
  position: absolute;
  right: -6px;
  top: -4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 60;
}

.social-bow {
  width: 28px;
  height: 22px;
  flex-shrink: 0;
  margin-bottom: -2px;
}

.social-bow svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.social-bow + .social-line {
  margin-top: -1px;
}

.social-line {
  width: 2px;
  height: 11px;
  background: var(--mustard-dark);
  flex-shrink: 0;
}

.social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  flex-shrink: 0;
}

.social-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 5px 14px rgba(0,0,0,0.2);
}

.social-btn svg {
  width: 16px;
  height: 16px;
  fill: #fff;
}

.social-btn.whatsapp {
  background: #25D366;
}

.social-btn.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-btn.mercadopago {
  background: #009EE3;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.social-btn.mercadopago .mercadopago-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  object-fit: contain;
}


/* =========================
MENU HOME
========================= */

.section {
  padding: 20px 20px 8px;
}

.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
  text-align: center;
  margin-bottom: 6px;
}

.section-sub {
  font-size: 13px;
  color: var(--brown-soft);
  text-align: center;
  margin-bottom: 18px;
}

.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.menu-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}

.menu-card {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(16px) saturate(1.15);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 4px 18px rgba(92, 64, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.45);
  transition: transform 0.2s ease;
}

.menu-card-link:hover .menu-card {
  transform: translateY(-3px);
}

.menu-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.menu-card .info {
  padding: 10px 12px 12px;
  background: rgba(255, 252, 240, 0.35);
}

.menu-card .name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.menu-card .price {
  font-size: 13px;
  font-weight: 600;
  color: var(--mustard-dark);
}


/* =========================
REVIEWS
========================= */

.reviews-section {
  margin: 12px 16px 28px;
  padding: 28px 18px 24px;
  text-align: center;
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.38),
      rgba(196,163,90,0.10)
    );
  border: 1px solid rgba(196,163,90,0.28);
  border-radius: 18px;
  box-shadow:
    0 8px 25px rgba(92,64,51,0.08),
    inset 0 1px 0 rgba(255,255,255,0.65);
}

.reviews-decoration {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-bottom: 12px;
}

.reviews-decoration span {
  width: 45px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(196,163,90,0.6)
  );
}

.reviews-decoration span:last-child {
  background: linear-gradient(
    90deg,
    rgba(196,163,90,0.6),
    transparent
  );
}

.reviews-decoration b {
  color: var(--mustard);
}

.reviews-eyebrow {
  font-size: 9px;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: var(--mustard-dark);
}

.reviews-section h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--brown);
  font-size: 21px;
  margin-top: 5px;
}

.rating-display {
  margin: 14px 0 17px;
}

.stars-static {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  font-size: 24px;
  line-height: 1;
}

.stars-static span {
  color: var(--mustard);
}

.stars-static .full {
  color: var(--mustard);
}

.stars-static .empty {
  color: #D5C8B5;
}

.stars-static .partial {
  background: linear-gradient(
    90deg,
    var(--mustard) 0%,
    var(--mustard) 90%,
    #D5C8B5 90%,
    #D5C8B5 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.rating-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  color: var(--brown);
  margin-top: 5px;
}

.rating-number span {
  font-size: 14px;
  font-weight: 400;
  color: var(--brown-soft);
}

.rating-display p {
  font-size: 11px;
  color: var(--brown-soft);
  margin-top: 2px;
}

.review-button {
  border: 1px solid rgba(196,163,90,0.6);
  background: transparent;
  color: var(--brown);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.review-button:hover {
  background: var(--brown);
  color: var(--cream);
}

.review-button.thanks {
  background: var(--olive);
  color: var(--cream);
  border-color: var(--olive);
  cursor: pointer;
  pointer-events: auto;
}


/* =========================
CATEGORÍAS
========================= */

.category-header {
  padding: 20px 20px 10px;
  background:
    linear-gradient(
      180deg,
      rgba(196, 163, 90, 0.18) 0%,
      rgba(247, 241, 232, 0.25) 75%,
      transparent 100%
    );
  border-radius: 16px 16px 0 0;
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--brown-soft);
  font-weight: 500;
  margin-bottom: 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.back:hover {
  color: var(--brown);
  transform: translateX(-3px);
}

.category-title {
  text-align: center;
}

.category-title .eyebrow {
  display: block;
  font-size: 9px;
  letter-spacing: 3px;
  font-weight: 700;
  color: var(--mustard-dark);
  margin-bottom: 5px;
}

.category-title h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 31px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1;
}

.category-title p {
  font-size: 13px;
  color: var(--brown-soft);
  margin-top: 7px;
  font-style: italic;
}

.category-showcase {
  padding: 16px 16px 8px;
}

.showcase-intro {
  text-align: center;
  padding: 4px 12px 20px;
}

.showcase-intro > span {
  font-size: 9px;
  letter-spacing: 2.2px;
  color: var(--mustard-dark);
  font-weight: 700;
}

.showcase-intro h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
  color: var(--brown);
  margin-top: 5px;
}

.showcase-intro p {
  max-width: 280px;
  margin: 6px auto 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--brown-soft);
}


/* =========================
IMÁGENES DE MENÚ
========================= */

.menu-photo {
  position: relative;
  width: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: var(--cream-dark);
  border: 1px solid rgba(196, 163, 90, 0.35);
  box-shadow:
    0 12px 30px rgba(92, 64, 51, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.menu-photo > img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.triples-menu-images {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  align-items: start;
}

.triples-menu-images .menu-photo {
  width: 100%;
  border-radius: 16px;
}

.info-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: fit-content;
  margin: 12px auto 0;
  padding: 10px 17px;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 18px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 5px 16px rgba(92, 64, 51, 0.24);
}

.info-trigger b {
  color: var(--mustard);
}

.category-info {
  display: none;
  margin-top: 12px;
  animation: abrirInfo 0.35s ease forwards;
}

.category-info.show {
  display: block;
}

.info-photo {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream-dark);
  border: 1px solid rgba(196, 163, 90, 0.35);
  box-shadow: 0 10px 28px rgba(92, 64, 51, 0.15);
}

.info-photo > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.info-close {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: rgba(92, 64, 51, 0.78);
  color: var(--cream);
  font-size: 20px;
  cursor: pointer;
}

.info-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(61, 44, 34, 0.02) 45%,
      rgba(61, 44, 34, 0.68) 100%
    );
  pointer-events: none;
}

.info-caption {
  position: absolute;
  z-index: 3;
  left: 16px;
  right: 16px;
  bottom: 15px;
  color: var(--white);
}

.info-caption strong {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
}

.info-caption span {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  color: rgba(255, 252, 240, 0.82);
}


/* =========================
PRODUCTOS
========================= */

.products-section {
  margin-top: 22px;
}

.products-heading {
  text-align: center;
  margin-bottom: 12px;
}

.products-heading span {
  font-size: 9px;
  letter-spacing: 2.2px;
  font-weight: 700;
  color: var(--mustard-dark);
}

.products-heading h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  color: var(--brown);
  margin-top: 3px;
}

.products-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 11px 12px 14px;
  background: rgba(255,255,255,0.38);
  border: 1px solid rgba(196,163,90,0.22);
  border-radius: 13px;
  box-shadow:
    0 3px 12px rgba(92,64,51,0.06),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.product-info {
  min-width: 0;
}

.product-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--brown);
}

.product-price {
  font-size: 12px;
  color: var(--mustard-dark);
  font-weight: 700;
  margin-top: 2px;
}

.product-controls {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
}

.quantity-button {
  width: 29px;
  height: 29px;
  border: 1px solid rgba(196,163,90,0.55);
  background: var(--cream);
  color: var(--brown);
  border-radius: 50%;
  font-size: 17px;
  line-height: 1;
  cursor: pointer;
}

.quantity {
  min-width: 17px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--brown);
}


/* =========================
SLIDER DE TRIPLES
========================= */

.products-slider {
  width: 100%;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.products-slider::-webkit-scrollbar {
  display: none;
}

.products-page {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.products-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 13px;
  min-height: 10px;
}

.products-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(168,132,58,0.3);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.products-dot.active {
  width: 8px;
  height: 8px;
  background: var(--mustard-dark);
  transform: scale(1.05);
}

.triples-products-section {
  margin-top: 22px;
}


/* =========================
NOTA
========================= */

.category-note {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 20px 5px 10px;
}

.category-note p {
  flex-shrink: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 10px;
  color: var(--brown-soft);
  text-align: center;
  font-style: italic;
}

.category-note span {
  height: 1px;
  flex: 1;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(196, 163, 90, 0.55),
      transparent
    );
}


/* =========================
CARRITO FLOTANTE
========================= */

.cart-floating {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  width: min(390px, calc(100% - 28px));
  min-height: 58px;
  display: none;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  background: var(--brown);
  color: var(--cream);
  border: none;
  border-radius: 16px;
  box-shadow:
    0 10px 30px rgba(92,64,51,0.28),
    0 2px 8px rgba(92,64,51,0.15);
  cursor: pointer;
}

.cart-floating.show {
  display: flex;
  animation: cartAppear 0.25s ease;
}

.cart-icon {
  font-size: 20px;
}

.cart-text {
  font-size: 12px;
  font-weight: 600;
}

.cart-count {
  min-width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--mustard);
  color: var(--brown);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.cart-total {
  margin-left: auto;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
}


/* =========================
MODALES
========================= */

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  background: rgba(61,44,34,0.46);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.modal.show {
  display: flex;
  animation: modalFade 0.2s ease;
}

.modal-box {
  position: relative;
  width: min(420px, 100%);
  max-height: 88vh;
  overflow-y: auto;
  padding: 27px 20px 20px;
  background: var(--cream);
  border-radius: 22px 22px 16px 16px;
  box-shadow: 0 20px 60px rgba(61,44,34,0.25);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 13px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background: rgba(92,64,51,0.09);
  color: var(--brown);
  font-size: 21px;
  cursor: pointer;
}

.modal-eyebrow {
  font-size: 9px;
  letter-spacing: 2.5px;
  font-weight: 700;
  color: var(--mustard-dark);
  text-align: center;
}

.modal-box h2 {
  font-family: 'Fraunces', Georgia, serif;
  color: var(--brown);
  font-size: 25px;
  text-align: center;
  margin-top: 4px;
}


/* =========================
ITEMS CARRITO
========================= */

.cart-items {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,0.42);
  border: 1px solid rgba(196,163,90,0.2);
}

.cart-item-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 13px;
  color: var(--brown);
}

.cart-item-details {
  font-size: 11px;
  color: var(--brown-soft);
  margin-top: 2px;
}

.cart-item-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--mustard-dark);
  white-space: nowrap;
}

.empty-cart {
  text-align: center;
  padding: 25px 10px;
  color: var(--brown-soft);
  font-size: 13px;
}

.cart-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid rgba(196,163,90,0.3);
  color: var(--brown);
}

.cart-summary span {
  font-size: 14px;
}

.cart-summary strong {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 21px;
}


/* =========================
FORMULARIO
========================= */

.modal-description {
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  color: var(--brown-soft);
  margin: 7px 10px 18px;
}

.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--brown);
  margin: 12px 0 5px;
}

.order-input,
.order-textarea {
  width: 100%;
  border: 1px solid rgba(196,163,90,0.35);
  background: rgba(255,255,255,0.55);
  color: var(--brown);
  border-radius: 11px;
  padding: 11px 12px;
  font-family: inherit;
  font-size: 13px;
  outline: none;
}

.order-textarea {
  min-height: 82px;
  resize: vertical;
}

.order-input:focus,
.order-textarea:focus {
  border-color: var(--mustard);
  box-shadow: 0 0 0 3px rgba(196,163,90,0.1);
}

.checkout-button {
  width: 100%;
  margin-top: 17px;
  padding: 14px 18px;
  border: none;
  border-radius: 12px;
  background: var(--brown);
  color: var(--cream);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 5px 15px rgba(92,64,51,0.16);
}

.checkout-button:hover {
  background: #4a3429;
}


/* =========================
ESTRELLAS INTERACTIVAS
========================= */

.rating-picker {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin: 17px 0 4px;
}

.rating-picker button {
  border: none;
  background: transparent;
  color: #D5C8B5;
  font-size: 34px;
  cursor: pointer;
  padding: 0 2px;
  transition:
    transform 0.15s ease,
    color 0.15s ease;
}

.rating-picker button.selected {
  color: var(--mustard);
}

.rating-picker button:hover {
  transform: scale(1.1);
}

.rating-text {
  text-align: center;
  color: var(--brown-soft);
  font-size: 11px;
  margin-bottom: 13px;
}


/* =========================
MERCADO PAGO
========================= */

.social-btn.mercadopago,
.footer-social.mercadopago {
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.mercado-pago-box {
  padding-bottom: 24px;
}

.mercadopago-description {
  margin: 10px auto 0;
  max-width: 330px;
  text-align: center;
  color: var(--brown-soft);
  font-size: 13px;
  line-height: 1.5;
}

.payment-data-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 20px;
}

.payment-data-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 252, 240, 0.65);
  border: 1px solid rgba(196, 163, 90, 0.25);
  border-radius: 14px;
}

.payment-data-info {
  min-width: 0;
  flex: 1;
  text-align: left;
}

.payment-data-label {
  display: block;
  margin-bottom: 3px;
  color: var(--mustard-dark);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.payment-data-value {
  display: block;
  color: var(--brown);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.copy-payment-button {
  flex-shrink: 0;
  width: 42px;
  height: 38px;
  border: 1px solid rgba(196, 163, 90, 0.4);
  border-radius: 10px;
  background: var(--cream);
  color: var(--brown);
  font-family: inherit;
  font-size: 16px;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.15s ease;
}

.copy-payment-button:hover {
  background: var(--cream-dark);
}

.copy-payment-button:active {
  transform: scale(0.94);
}

.copy-payment-button.copied {
  background: var(--olive);
  border-color: var(--olive);
  color: var(--white);
}


/* =========================
FOOTER
========================= */

.footer {
  background: var(--brown);
  color: var(--cream);
  text-align: center;
  padding: 18px 20px;
  font-size: 12px;
  letter-spacing: 0.5px;
  border-radius: 0 0 16px 16px;
}

.footer p {
  margin-bottom: 5px;
}

.footer > a {
  color: var(--mustard);
  text-decoration: none;
  display: inline-block;
  line-height: 1.45;
}

.footer-address-detail {
  display: block;
  font-size: 10px;
  opacity: 0.85;
  margin-top: 2px;
}


/* =========================
REDES DEL FOOTER
========================= */

.footer-socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

.footer-social {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.footer-social:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-social svg {
  width: 14px;
  height: 14px;
  fill: #fff;
}

.footer-social.whatsapp {
  background: #25D366;
}

.footer-social.instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.footer-social.mercadopago {
  background: #009EE3;
}

.footer-social.mercadopago .mercadopago-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}


/* =========================
ANIMACIONES
========================= */

@keyframes abrirInfo {
  0% {
    opacity: 0;
    transform: translateY(-8px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes cartAppear {
  from {
    opacity: 0;
    transform: translate(-50%, 15px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}


@media (max-width: 380px) {

  .category-title h1 {
    font-size: 28px;
  }

  .showcase-intro h2 {
    font-size: 19px;
  }

  .triples-menu-images {
    gap: 7px;
  }

  .triples-menu-images .menu-photo {
    border-radius: 14px;
  }

  .info-photo {
    height: 270px;
  }

  .product-name {
    font-size: 13px;
  }

}


.field-error {
  color: #c0392b;
  font-size: 12px;
  margin-top: 0px;
  margin-bottom: 14px;
  text-align: left;
  min-height: 0;
}