
:root{
  --cream:#FEF6EF;
  --paper:#FFFDFC;
  --choco:#401102;
  --pink:#F25B8F;
  --caramel:#F6BA60;
  --beige:#F7CE91;

  --font-main: "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Baloo 2", "Nunito", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --border: rgba(64,17,2,.10);
  --shadow: 0 18px 50px rgba(64,17,2,.10);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: var(--font-main);

  /* ✅ Fondo sin “cortes” */
  background:
    radial-gradient(900px 420px at 20% 5%, rgba(242,91,143,.14), transparent 60%),
    radial-gradient(900px 420px at 80% 8%, rgba(246,186,96,.16), transparent 60%),
    var(--cream);
  background-repeat: no-repeat;
  /* background-attachment: fixed; */ /* (opcional) si te gusta fijo al hacer scroll */

  color: var(--choco);

  /* ✅ Tipografía base más grande y responsiva */
  font-size: clamp(16.5px, 1.15vw, 18px);
  line-height: 1.35;
}

/* Topbar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgba(254,246,239,.72);
  border-bottom: 1px solid var(--border);
}

.topbarInner{
  max-width:1180px;
  margin: 0 auto;
  padding: 14px 18px;
  width: min(1180px, calc(100% - 36px));
  display:flex;
  align-items:center;
  justify-content:center; /* logo centrado */
  gap: 14px;
}

.brand{
  display:flex;
  align-items:center;
  min-height: 64px;
}

/* Logo con “límite inteligente” */
.brandLogo{
  height: clamp(40px, 4vw, 58px);
  width: auto;
  display: block;
}

/* Page */
.container{
  max-width:1180px;
  margin:0 auto;
  padding: 18px;
  width: min(1180px, calc(100% - 36px));
}

.hero{
  text-align:center;
  padding: 10px 0 18px;
}

.heroTitle{
  margin: 10px 0 6px;
  font-size: clamp(26px, 2.4vw, 32px);
  letter-spacing: .2px;
}

.heroSubtitle{
  margin:0;
  color: rgba(64,17,2,.65);
  font-weight: 650;
  font-size: clamp(14px, 1.3vw, 16px);
}

/* Layout */
.layout{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 14px;
}

@media (max-width: 920px){
  .layout{ grid-template-columns:1fr; }
  .container{ width: min(100%, calc(100% - 24px)); padding-top: 12px; }
  .topbarInner, .amIndex{ width: min(100%, calc(100% - 24px)); }
  .hero{ padding-top: 6px; }
}

/* Cards */
.card{
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.cardTitle{
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 950;
}

/* Products (cards con imagen) */
.products{
  display:grid;
  gap: 12px;
}

.productCard{
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(247,206,145,.10), rgba(255,255,255,0));
  box-shadow: 0 14px 40px rgba(64,17,2,.08);
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
  padding: 12px;
}

.productImg{
  width: 170px;
  height: 128px;
  border-radius: 16px;
  object-fit: cover;
  display: block;
  border: 1px solid rgba(64,17,2,.10);
  background: rgba(255,255,255,.7);
}

.productInfo{
  display:flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  min-width: 0;
}

.productTop .name{
  font-weight: 950;
  line-height: 1.15;
  font-size: 16px;
}

.productTop .price{
  margin-top: 4px;
  font-size: 14px; /* ✅ un poco más grande */
  color: rgba(64,17,2,.65);
  font-weight: 850;
}

.productDesc{
  font-size: 13.5px; /* ✅ más legible */
  color: rgba(64,17,2,.62);
  font-weight: 700;
  line-height: 1.35;
}

.productBottom{
  display:flex;
  justify-content: flex-end;
}

@media (max-width: 520px){
  .productCard{
    grid-template-columns: 1fr;
    padding: 12px;
    text-align: center; /* ✅ centra textos */
  }
  .productImg{
    width:100%;
    height: 190px;
  }

  /* ✅ centra el bloque de info */
  .productInfo{
    align-items: center;
  }

  /* ✅ centra el precio y descripción */
  .productTop .name{
    font-size: 17px;
  }
  .productTop .price{
    font-size: 15px;
  }
  .productDesc{
    font-size: 14.5px;
  }

  /* ✅ stepper centrado */
  .productBottom{
    justify-content: center;
  }
  .stepper{
    margin: 0 auto;
  }
}


/* Stepper */
.stepper{
  display:flex;
  align-items:center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  background: rgba(254,246,239,.65);
}

.stepper button{
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: white;
  color: var(--choco);
  font-size: 18px;
  font-weight: 950;
  cursor:pointer;
  box-shadow: 0 8px 18px rgba(64,17,2,.08);
}

.qty{
  min-width: 28px;
  text-align:center;
  font-weight: 950;
  font-size: 15px;
}

/* Summary */
.summaryRow{
  display:flex;
  gap: 12px;
  align-items:stretch;
  margin-bottom: 12px;
}

.summaryBox{
  min-width: 130px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(242,91,143,.06);
}

.summaryLabel{
  font-size: 13px;
  color: rgba(64,17,2,.60);
  font-weight: 850;
}

.summaryValue{
  margin-top: 4px;
  font-size: 28px;
  font-weight: 950;
}

.subtotalBox{
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(246,186,96,.10);
}

.subtotalBig{
  font-size: 36px;
  font-weight: 950;
  margin-top: 4px;
  color: var(--pink);
}

.muted{ color: rgba(64,17,2,.62); }
.small{ font-size: 13px; } /* ✅ más grande */

/* Mini card */
.miniCard{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(254,246,239,.75);
  margin-bottom: 12px;
}

.miniTitle{
  font-weight: 950;
  margin-bottom: 6px;
  display:flex;
  align-items:center;
  gap: 8px;
}

.miniIcon{
  width: 22px;
  height: 22px;
  object-fit: contain;
  display:block;
}

.cartSummary{ line-height:1.45; }

/* Form */
.form{ display:grid; gap: 8px; }

.label{
  font-size: 13px; /* ✅ más grande */
  color: rgba(64,17,2,.62);
  font-weight: 850;
}

.req{ color: var(--pink); font-weight: 950; }

.hint{
  font-size: 13px; /* ✅ más grande */
  color: rgba(64,17,2,.62);
  font-weight: 750;
  border: 1px dashed rgba(64,17,2,.18);
  background: rgba(254,246,239,.60);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 6px;
}

.input, .textarea{
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: white;
  color: var(--choco);
  padding: 12px 12px; /* ✅ un poquito más alto */
  outline: none;
  font-size: 15px;
}

.textarea{ resize: vertical; }

.mapsRow{ display:flex; gap: 8px; align-items:center; }
.mapsRow .input{ flex: 1; }

/* Location options */
.locationOptions{
  display:grid;
  gap: 8px;
  margin-top: 10px;
}

.radioRow{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 850;
  color: rgba(64,17,2,.78);
  font-size: 14px;
}

.radioRow input{ transform: translateY(1px); }

.mapsBlock{ padding-left: 28px; }
.waLocBlock{ padding-left: 28px; padding-top: 2px; }
.pickupBlock{ padding-left: 28px; padding-top: 2px; }
.pickupBox{
  border: 1px dashed rgba(64,17,2,.14);
  border-radius: 14px;
  background: rgba(246,186,96,.08);
  padding: 12px;
  display: grid;
  gap: 8px;
}
.pickupTitle{
  font-weight: 950;
  color: var(--choco);
}
.pickupLink{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(242,91,143,.28);
  background: rgba(242,91,143,.10);
  color: var(--choco);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(64,17,2,.06);
}
.pickupLink:hover{ text-decoration: none; filter: brightness(.98); }
.addressHint{ margin-top: 6px; }

/* Checkbox opt-in */
.checkRow{
  display:flex;
  align-items:flex-start;
  gap: 10px;
  font-weight: 850;
  color: rgba(64,17,2,.78);
  padding: 10px 12px;
  border: 1px dashed rgba(64,17,2,.18);
  background: rgba(254,246,239,.60);
  border-radius: 14px;
  font-size: 14px;
}
.checkRow input{ margin-top: 2px; accent-color: var(--pink); }

.waOptWrap{
  display:grid;
  gap:8px;
}
.waOptHint{
  padding: 0 12px 2px 12px;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(64,17,2,.70);
}

/* Buttons */
.btn{
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 12px 12px;
  cursor: pointer;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(64,17,2,.10);
  font-size: 15px;
}

.btn.primary{
  background: linear-gradient(180deg, rgba(242,91,143,.95), rgba(242,91,143,.85));
  color: white;
  border-color: rgba(242,91,143,.35);
}

.btn.secondary{
  background: linear-gradient(180deg, rgba(246,186,96,.85), rgba(246,186,96,.72));
  color: var(--choco);
  border-color: rgba(246,186,96,.40);
}

.btn:disabled{ opacity:.6; cursor:not-allowed; }

.status{
  margin-top: 6px;
  font-size: 14px;
  min-height: 18px;
}

/* =========================
   MODAL + ALERTS (z-index)
   ========================= */

/* ✅ para que overlays se oculten de verdad */
.hidden{ display:none !important; }

/* Modal */
.modalOverlay{
  position: fixed;
  inset: 0;
  background: rgba(64,17,2,.35);
  display: grid;
  place-items: center;
  padding: 14px;
  z-index: 40; /* ✅ sobre topbar */
}

.modal{
  width: min(720px, 96vw);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(64,17,2,.25);
  overflow: hidden;
}

.modalHeader{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(246,186,96,.12);
}

.modalTitle{ margin:0; font-size: 17px; font-weight: 950; }

.iconBtn{
  width: 36px;
  height: 36px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: white;
  color: var(--choco);
  cursor: pointer;
  font-weight: 950;
}

.modalBody{ padding: 14px; display:grid; gap: 12px; }
.modalItems{ display:grid; gap: 8px; }

.itemLine{
  display:flex;
  justify-content: space-between;
  align-items:center;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(254,246,239,.70);
}

.itemName{ font-weight: 950; font-size: 15px; }
.itemMeta{ font-size: 13px; color: rgba(64,17,2,.62); font-weight: 750; }

.modalTotals{
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 10px 12px;
  background: rgba(242,91,143,.08);
}

.modalTotalLine{
  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 6px;
  font-size: 14px;
}

.modalSubtotal{ color: var(--pink); font-size: 18px; }

.modalFooter{
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display:flex;
  gap: 10px;
  justify-content: flex-end;
  background: rgba(254,246,239,.80);
}

@media (max-width:520px){
  .modalFooter{ flex-direction: column; }
  .summaryRow{ flex-direction: column; }
  .summaryBox{ min-width: unset; }
}

/* Alert */
.alertOverlay{
  position: fixed;
  inset: 0;
  background: rgba(64,17,2,.35);
  display: grid;
  place-items: center;
  padding: 14px;
  z-index: 50;
}

.alertBox{
  width: min(520px, 96vw);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 22px;
  box-shadow: 0 30px 80px rgba(64,17,2,.25);
  overflow: hidden;
}

.alertTitle{
  padding: 12px 14px;
  font-weight: 950;
  background: rgba(242,91,143,.10);
  border-bottom: 1px solid var(--border);
  font-size: 16px;
}

.alertText{
  padding: 12px 14px;
  color: rgba(64,17,2,.78);
  font-weight: 750;
  line-height: 1.35;
  white-space: pre-wrap;
  font-size: 14px;
}

.alertFooter{
  padding: 12px 14px;
  border-top: 1px solid var(--border);
  display:flex;
  justify-content: flex-end;
  background: rgba(254,246,239,.80);
}


/* ✅ Index tweaks: precio + tamaño */
.productTop .price{
  margin-top: 4px;
  font-size: 15px;
  color: rgba(64,17,2,.85);
  font-weight: 950;
}
.sizeBadge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.70);
  font-size: 12px;
  font-weight: 900;
  color: rgba(64,17,2,.78);
}

/* ✅ Ayuda (fallback WhatsApp) */
.helpDetails summary{
  cursor: pointer;
  font-weight: 950;
  list-style: none;
}
.helpDetails summary::-webkit-details-marker{ display:none; }
.helpDetails summary::after{
  content: "▾";
  float: right;
  opacity: .7;
}
.helpDetails[open] summary::after{ content: "▴"; }

.spinner{
  width:18px; height:18px;
  border-radius:999px;
  border: 2px solid rgba(64,17,2,.18);
  border-top-color: rgba(64,17,2,.65);
  animation: spin .9s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }


/* ✅ Modal scroll para ver ayuda al final */
.modal{
  max-height: calc(100vh - 40px);
  overflow: auto;
}

/* ✅ Aviso siempre encima */
#alertOverlay{
  z-index: 30000 !important;
}

#loadingOverlay{ z-index: 25000 !important; }

.alertOverlay{ z-index: 30000; }
.alertText{ white-space: pre-line; }

/* ✅ Help bar (debajo del resumen) */
.helpBar{
  width: min(720px, 96vw);
  margin: 0 auto 12px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 12px;
}
.helpBar summary{ font-weight: 950; }

/* ✅ Loading overlay */
.loadingOverlay{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(64,17,2,.22);
  padding: 14px;
  z-index: 25000;
}
.loadingBox{
  width: min(520px, 92vw);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
  display: grid;
  gap: 10px;
  justify-items: center;
  box-shadow: 0 30px 80px rgba(64,17,2,.20);
}
.loadingTitle{
  font-weight: 950;
  font-size: 18px;
  color: rgba(64,17,2,.88);
  text-align: center;
}

/* ✅ Modal scroll */
.modal{ max-height: calc(100vh - 40px); overflow: auto; }

/* ✅ Alert help section */
.alertHelpWrap{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.alertHelpWrap textarea{ width: 100%; }
.alertText{ white-space: pre-line; }


/* ✅ Loading overlay (tarjeta centrada) */
.loadingOverlay{
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 14px;
  background: rgba(0,0,0,.35);
  z-index: 25000;
}
.loadingCard{
  width: min(560px, 92vw);
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 18px;
  display: grid;
  gap: 10px;
  justify-items: center;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
}
.loadingTitle{
  font-weight: 950;
  font-size: 20px;
  color: rgba(64,17,2,.88);
  text-align: center;
  line-height: 1.15;
}
.loadingSub{
  font-size: 14px;
  text-align: center;
  opacity: .9;
}

/* ✅ Mejoras visuales: “No abrió WhatsApp” dentro del aviso */
.alertHelpWrap{
  margin-top: 14px;
  padding: 14px 14px;
  border-top: 1px solid var(--border);
  background: rgba(255,255,255,.65);
  border-radius: 14px;
}
.alertHelpWrap .muted{ line-height: 1.35; }
.alertHelpWrap textarea{ border-radius: 12px; }
.alertText{ white-space: pre-line; }


/* ✅ Make loading overlay clearly visible */
.loadingOverlay{
  background: rgba(0,0,0,.45) !important;
  z-index: 28000 !important;
}
.loadingCard{
  border-width: 2px;
}


/* ✅ Opiniones */
.reviewsTop{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}
.reviewsSummary{
  margin-top: 10px;
  display:grid;
  gap: 10px;
}
.reviewsAvg{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap: wrap;
}
.avgNum{
  font-size: 26px;
  font-weight: 950;
  color: rgba(64,17,2,.88);
}
.avgStars{
  display:flex;
  gap: 4px;
  font-size: 18px;
  line-height: 1;
  color: rgba(242,91,143,.95);
}
.reviewsHint{
  background: rgba(255,255,255,.55);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
}
.reviewsList{
  margin-top: 12px;
  display:grid;
  gap: 10px;
}
.reviewCard{
  background: rgba(255,255,255,.72);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 12px;
}
.reviewCardTop{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
}
.reviewName{
  font-weight: 950;
}
.reviewStars{
  display:flex;
  gap: 3px;
  color: rgba(242,91,143,.95);
}
.reviewMeta{
  margin-top: 6px;
  opacity: .85;
}
.reviewText{
  margin-top: 8px;
  white-space: pre-line;
}

/* ✅ Estrellas selector */
.starRow{
  display:flex;
  gap: 8px;
}
.starBtn{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.75);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}
.starBtn.isOn{
  background: rgba(242,91,143,.16);
  border-color: rgba(242,91,143,.45);
}


/* ✅ Loader siempre visible (encima de todo) */
#loadingOverlay{
  z-index: 31000 !important;
}
.loadingOverlay{
  background: rgba(0,0,0,.40) !important;
  z-index: 31000 !important;
}


/* ✅ Loader SOLO para Opiniones */
.reviewsInlineLoading{
  display: grid;
  place-items: center;
  gap: 10px;
  padding: 14px 10px;
  margin-top: 10px;
  border: 1px dashed rgba(64,17,2,.18);
  border-radius: 14px;
  background: rgba(255,255,255,.55);
}
.reviewsInlineLoading.hidden{ display: none !important; }


/* ✅ Respuesta admin */
.reviewReply{
  margin-top: 10px;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(242,91,143,.08);
  border: 1px solid rgba(242,91,143,.18);
}
.reviewReplyTitle{
  font-weight: 950;
  margin-bottom: 6px;
}
.reviewAdminRow{
  margin-top: 10px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.reviewAdminRow .input{
  flex:1;
  min-width: 220px;
}


/* ✅ Botón flotante volver al inicio (solo Opiniones) */
.backToTop{
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 26000;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.88);
  backdrop-filter: blur(6px);
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  font-weight: 950;
}
.backToTop.hidden{ display:none !important; }


/* ===== Shared login clone (base tomada de Delivery) ===== */
.btnLinkLike{
  text-decoration:none;
  display:flex;
  align-items:center;
  justify-content:center;
}
.amLoginCard{
  max-width:700px;
  margin:28px auto 0;
  padding:26px;
  border-radius:26px;
  background:rgba(255,255,255,.88);
  box-shadow:0 18px 40px rgba(64,17,2,.08);
}
.amLoginHero{ text-align:center; padding:4px 0 8px; }
.amLoginTitle{
  margin:0 0 8px;
  font-size:clamp(26px,2.6vw,34px);
  line-height:1.05;
  color:var(--choco);
}
.amLoginLead{
  margin:0;
  font-size:clamp(16px,1.6vw,18px);
  font-weight:850;
  color:rgba(64,17,2,.78);
}
.amLoginFieldHint{
  margin-top:6px;
  color:rgba(64,17,2,.66);
  font-size:13px;
  font-weight:750;
}
.amLoginPinRow{
  display:flex;
  gap:10px;
  align-items:center;
}
.amLoginPinRow .input{ flex:1; }
.amPinToggleBtn{
  min-width:54px;
  height:48px;
  padding:0 14px;
  border-radius:16px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(246,186,96,.96), rgba(245,196,108,.92));
  box-shadow:0 10px 22px rgba(246,186,96,.22);
  font-size:18px;
  cursor:pointer;
}
.amRememberWrap{ margin-top:10px; }
.amRememberLabel{
  display:flex;
  align-items:center;
  gap:10px;
  cursor:pointer;
  font-weight:850;
  color:rgba(64,17,2,.82);
}
.amRememberLabel input{
  width:18px;
  height:18px;
  accent-color:#ff5f95;
}
.amRememberHint{
  margin-top:6px;
  color:rgba(64,17,2,.66);
  font-size:13px;
  font-weight:750;
}
.amLoginActionsRow{
  display:flex;
  gap:10px;
  margin-top:14px;
  justify-content:stretch;
}
.amLoginActionsRow .btn,
.amLoginActionsRow .btnLinkLike{
  flex:1;
  min-height:48px;
}
.amLoginActionsRowSingle .btn{
  width:100%;
}
.amLoginTopbarBrand{
  display:flex;
  width:100%;
  align-items:center;
  justify-content:center;
}
.amLoginTopbarLogo{
  height:48px;
  width:auto;
  display:block;
}
.amLoadingOverlay{
  position:fixed;
  inset:0;
  background:rgba(64,17,2,.25);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:120000;
  box-sizing:border-box;
}
.amLoadingCard{
  width:fit-content;
  max-width:min(420px, calc(100vw - 32px));
  background:rgba(255,255,255,.94);
  border:1px solid rgba(64,17,2,.12);
  border-radius:24px;
  padding:16px 18px;
  box-shadow:0 18px 40px rgba(0,0,0,.18);
  box-sizing:border-box;
}
.amLoadingRow{
  display:grid;
  grid-template-columns:auto minmax(0,1fr);
  gap:12px;
  align-items:center;
}
.amLoadingRow > div:last-child{ min-width:0; }
.amLoadingTitle{
  font-weight:950;
  font-size:18px;
  line-height:1.08;
  color:var(--choco);
}
.amLoadingSub{
  margin-top:4px;
  color:rgba(64,17,2,.72);
  font-size:13px;
  line-height:1.3;
  font-weight:800;
}
.amSpinner{
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid rgba(64,17,2,.18);
  border-top-color:rgba(64,17,2,.70);
  animation:amSpin 1s linear infinite;
}
@keyframes amSpin{ to{ transform:rotate(360deg); } }

@media (max-width: 560px){
  .amLoadingCard{
    max-width: calc(100vw - 28px);
    padding:14px 16px;
  }
  .amLoadingTitle{ font-size:16px; }
  .amLoadingSub{ font-size:12.5px; }
}

@media (max-width: 720px){
  .amLoginCard{
    margin:16px auto 0;
    padding:18px;
    border-radius:22px;
  }
  .amLoginTitle{ font-size:clamp(22px,7vw,30px); }
  .amLoginLead{ font-size:15px; }
  .amLoginTopbarLogo{ height:42px; }
}
@media (max-width: 520px){
  .amLoginActionsRow{ flex-direction:column; }
  .amPinToggleBtn{ min-width:52px; height:auto; }
}


.amSectionTopbarInner{
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
}
.amSectionBrand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
  flex:1 1 auto;
}
.amSectionBrandLogo{
  width:44px;
  height:44px;
  object-fit:contain;
  flex:0 0 auto;
  display:block;
}
.amSectionBrandMeta{
  display:flex;
  flex-direction:column;
  gap:2px;
  min-width:0;
}
.amSectionTitle{
  margin:0;
  color:var(--choco);
  font-weight:950;
  font-size:clamp(20px, 1.7vw, 22px);
  line-height:1.08;
  letter-spacing:.01em;
}
.amSectionSubtitle{
  margin:0;
  color:rgba(64,17,2,.65);
  font-size:12.5px;
  font-weight:800;
  line-height:1.2;
}
.amSectionActions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  margin-left:auto;
}
.amSectionActions .btn{
  min-height:46px;
  border-radius:18px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(64,17,2,.06);
}
.amBtnWarm{
  background: linear-gradient(180deg, rgba(246,196,110,.96), rgba(240,183,84,.96));
  border-color: rgba(224,160,49,.55);
  color: var(--choco);
}
.amBtnSoft{
  background: linear-gradient(180deg, rgba(251,240,244,.98), rgba(247,232,237,.98));
  border-color: rgba(242,91,143,.18);
  color: var(--choco);
}
.amBtnNeutral{
  background: linear-gradient(180deg, rgba(252,252,252,.98), rgba(241,239,236,.98));
  border-color: rgba(64,17,2,.10);
  color: var(--choco);
}

@media (max-width: 860px){
  .amSectionTopbarInner{
    gap:12px;
    padding-top:10px;
    padding-bottom:10px;
  }
  .amSectionBrand{
    width:auto;
    justify-content:center;
    text-align:center;
    margin:0 auto;
  }
  .amSectionBrandMeta{
    align-items:center;
    text-align:center;
  }
  .amSectionBrandLogo{
    width:46px;
    height:46px;
  }
  .amSectionTitle{
    font-size:clamp(23px, 6vw, 25px);
  }
  .amSectionSubtitle{
    font-size:12.5px;
  }
}



/* ===== Shared section header hardening (Apr 2026) ===== */
.amSectionTopbarInner{
  width:100%;
}
.amSectionBrand{
  max-width:100%;
}
.amSectionBrandMeta{
  justify-content:center;
}
.amSectionTitle,
.amSectionSubtitle{
  word-break:break-word;
}
@media (min-width: 861px){
  .amSectionTopbarInner{
    justify-content:space-between;
  }
  .amSectionBrand{
    justify-content:flex-start;
    margin:0;
  }
  .amSectionBrandMeta{
    align-items:flex-start;
    text-align:left;
  }
}
@media (max-width: 860px){
  .amSectionTopbarInner{
    justify-content:center !important;
  }
  .amSectionBrand{
    width:auto;
    max-width:100%;
    margin:0 auto;
    justify-content:center;
    padding-inline:8px;
  }
  .amSectionBrandMeta{
    align-items:center;
    text-align:center;
  }
}


/* ===== UX fluida: loaders por sección y cierres tipo X ===== */
.amInlineLoad{
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  min-height:72px;
  padding:14px 16px;
  border-radius:18px;
  border:1px solid rgba(64,17,2,.10);
  background:rgba(255,255,255,.78);
  box-shadow:0 10px 24px rgba(64,17,2,.06);
}
.amInlineLoadSpin{
  width:18px;
  height:18px;
  flex:0 0 auto;
  border-radius:999px;
  border:2px solid rgba(64,17,2,.18);
  border-top-color:rgba(64,17,2,.70);
  animation:amSpin 1s linear infinite;
}
.amInlineLoadBody{ min-width:0; }
.amInlineLoadTitle{
  font-weight:900;
  font-size:15px;
  line-height:1.12;
  color:var(--choco);
}
.amInlineLoadSub{
  margin-top:4px;
  font-size:12.5px;
  font-weight:760;
  color:rgba(64,17,2,.66);
  line-height:1.32;
}
.amInlineLoad.isSoft{
  min-height:64px;
  padding:12px 14px;
  background:rgba(255,255,255,.66);
  box-shadow:none;
}
.amModalCloseX{
  width:40px;
  height:40px;
  min-width:40px;
  border-radius:14px;
  border:1px solid rgba(64,17,2,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(254,246,239,.92));
  color:var(--choco);
  font-size:22px;
  line-height:1;
  font-weight:950;
  box-shadow:0 10px 24px rgba(64,17,2,.08);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.amModalCloseX:hover{ transform:translateY(-1px); }


.amInlineLoadWrap{ width:100%; }


/* =====================================================
   INDEX PREMIUM REDESIGN · 2026-03-29
   ===================================================== */
:root{
  --shell: rgba(255,255,255,.70);
  --shell-strong: rgba(255,255,255,.88);
  --hero-border: rgba(255,255,255,.48);
  --glass-shadow: 0 24px 70px rgba(64,17,2,.12);
}

html{ scroll-behavior:smooth; }
body.is-loading{ overflow:hidden; }
body{
  background:
    radial-gradient(1000px 520px at 0% 0%, rgba(242,91,143,.16), transparent 62%),
    radial-gradient(920px 520px at 100% 0%, rgba(246,186,96,.16), transparent 58%),
    linear-gradient(180deg, #fffaf5 0%, #fef6ef 48%, #fff9f6 100%);
}

.topbar{
  background: rgba(255,249,244,.72);
  border-bottom: 1px solid rgba(64,17,2,.08);
  box-shadow: 0 10px 28px rgba(64,17,2,.05);
}
.topbarInner{
  max-width: 1180px;
  justify-content: space-between;
  padding: 14px 18px;
}
.brandLink{ text-decoration:none; }
.topbarBadge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(64,17,2,.08);
  background: rgba(255,255,255,.76);
  box-shadow: 0 10px 24px rgba(64,17,2,.06);
  color: rgba(64,17,2,.74);
  font-size: 13px;
  font-weight: 900;
}

.amIndex{
  max-width: 1180px;
  width: min(1180px, calc(100% - 36px));
  padding-top: 22px;
  padding-bottom: 34px;
}
.heroPremium{ padding: 6px 0 20px; }
.heroShell{
  display:grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 18px;
  align-items: stretch;
}
.heroCopy,
.spotlightGlass{
  position:relative;
  overflow:hidden;
  border-radius: 28px;
  border: 1px solid var(--hero-border);
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.58)),
    linear-gradient(135deg, rgba(242,91,143,.07), rgba(246,186,96,.08));
  box-shadow: var(--glass-shadow);
}
.heroCopy{
  padding: 28px clamp(22px, 3vw, 36px);
  min-height: 240px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.heroCopy::after,
.spotlightGlass::after{
  content:"";
  position:absolute;
  inset:auto -10% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246,186,96,.18) 0%, transparent 70%);
  pointer-events:none;
}
.heroEyebrow{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(64,17,2,.08);
  font-size: 12.5px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: rgba(64,17,2,.72);
}
.heroDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--pink), #ff77a2);
  box-shadow: 0 0 0 6px rgba(242,91,143,.12);
}
.heroTitle{
  margin: 16px 0 10px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 1000;
}
.heroSubtitle{
  max-width: 720px;
  margin: 0;
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.52;
  color: rgba(64,17,2,.68);
  font-weight: 700;
}
.heroChips{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 18px;
}
.heroChip{
  display:inline-flex;
  align-items:center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(64,17,2,.08);
  background: rgba(255,255,255,.80);
  box-shadow: 0 10px 20px rgba(64,17,2,.04);
  font-size: 13px;
  font-weight: 850;
  color: rgba(64,17,2,.74);
}
.heroSpotlight{ min-width: 0; }
.spotlightGlass{
  min-height: 100%;
  padding: 18px;
  display:grid;
  gap: 14px;
  align-content: center;
}
.spotlightBadge{
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(64,17,2,.88);
  color: white;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.spotlightVisual{
  min-height: 150px;
  display:grid;
  place-items:center;
  border-radius: 24px;
  background:
    radial-gradient(circle at 50% 50%, rgba(246,186,96,.28), transparent 58%),
    radial-gradient(circle at 50% 50%, rgba(242,91,143,.16), transparent 70%),
    rgba(255,255,255,.55);
  overflow:hidden;
}
.spotlightIso{
  width: clamp(100px, 38%, 156px);
  height: auto;
  display:block;
  filter: drop-shadow(0 20px 28px rgba(64,17,2,.15));
  animation: amFloat 4.8s ease-in-out infinite;
}
.spotlightText{
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(64,17,2,.68);
  font-weight: 700;
}

.layoutPremium{
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  align-items: start;
  gap: 18px;
}
.card{
  border-radius: 28px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.82));
  border-color: rgba(64,17,2,.08);
  box-shadow: var(--glass-shadow);
}
.cardProducts,
.cardOrder,
.cardReviews{
  position:relative;
  overflow:hidden;
}
.cardProducts::before,
.cardOrder::before,
.cardReviews::before{
  content:"";
  position:absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(242,91,143,.22), rgba(246,186,96,.16), transparent 70%);
}
.cardOrder{
  position: sticky;
  top: 92px;
}
.sectionHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.sectionKicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(64,17,2,.48);
}
.cardTitle{
  margin: 4px 0 0;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -.03em;
}
.sectionPill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(64,17,2,.08);
  background: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 900;
  color: rgba(64,17,2,.74);
  box-shadow: 0 10px 22px rgba(64,17,2,.05);
}
.sectionPillAccent{
  background: linear-gradient(180deg, rgba(242,91,143,.14), rgba(246,186,96,.12));
}

.products{ gap: 14px; }
.productCard{
  position:relative;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(64,17,2,.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72)),
    linear-gradient(135deg, rgba(246,186,96,.06), rgba(242,91,143,.06));
  box-shadow: 0 18px 36px rgba(64,17,2,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.productCard:hover{
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(64,17,2,.10);
}
.productCard.is-selected{
  border-color: rgba(242,91,143,.24);
  box-shadow: 0 24px 48px rgba(242,91,143,.12);
}
.productMediaWrap{
  border-radius: 20px;
  overflow:hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.48));
}
.productImg{
  width: 100%;
  height: 100%;
  min-height: 148px;
  border: 0;
  border-radius: 20px;
  transition: transform .35s ease;
}
.productCard:hover .productImg{ transform: scale(1.03); }
.productInfo{ gap: 14px; }
.productEyebrow{
  display:inline-flex;
  align-items:center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246,186,96,.13);
  color: rgba(64,17,2,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.productTop .name{
  margin-top: 8px;
  font-size: 21px;
  letter-spacing: -.03em;
}
.productMetaRow{
  display:flex;
  align-items:center;
  gap: 10px;
  flex-wrap:wrap;
  margin-top: 8px;
}
.productTop .price{
  margin: 0;
  font-size: 15px;
  font-weight: 950;
  color: rgba(64,17,2,.82);
}
.sizeBadge{
  display:inline-flex;
  align-items:center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(64,17,2,.06);
  color: rgba(64,17,2,.72);
  font-size: 12px;
  font-weight: 900;
}
.productDesc{
  font-size: 14px;
  line-height: 1.55;
  color: rgba(64,17,2,.60);
}
.stepper{
  gap: 12px;
  padding: 7px;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  box-shadow: inset 0 0 0 1px rgba(64,17,2,.06), 0 14px 24px rgba(64,17,2,.05);
}
.stepper button{
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border-color: rgba(64,17,2,.08);
  box-shadow: none;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}
.stepper button:not(:disabled):hover{
  transform: translateY(-1px);
  background: rgba(246,186,96,.16);
}
.stepper button:disabled{
  opacity: .42;
}
.qty{
  min-width: 32px;
  font-size: 16px;
}

.summaryRow{ gap: 14px; margin-bottom: 14px; }
.summaryBox,
.subtotalBox,
.miniCard,
.deliveryCard{
  border-color: rgba(64,17,2,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.66));
}
.summaryBox{
  min-width: 138px;
  padding: 14px;
}
.summaryValue{
  font-size: clamp(28px, 4vw, 36px);
  line-height: .95;
}
.subtotalBox{
  padding: 14px;
}
.subtotalBig{
  font-size: clamp(34px, 4vw, 42px);
  line-height: .92;
  letter-spacing: -.03em;
}
.miniCard{
  margin-bottom: 14px;
  padding: 14px;
  border-radius: 22px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.25);
}
.miniCardTop{
  display:flex;
  align-items:center;
  gap: 10px;
  margin-bottom: 10px;
}
.miniIcon{
  width: 24px;
  height: 24px;
}
.miniTitle{ margin-bottom: 0; }
.cartMiniCard{ background: linear-gradient(180deg, rgba(246,186,96,.11), rgba(255,255,255,.70)); }
.cartSummary{ display:grid; gap: 8px; }
.cartEmptyState{
  display:grid;
  gap: 4px;
}
.cartEmptyState strong{
  font-size: 15px;
  color: var(--choco);
}
.cartLine{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(64,17,2,.06);
}
.cartLineName{
  font-weight: 850;
  color: var(--choco);
}
.cartLineMeta{
  font-size: 13px;
  font-weight: 900;
  color: rgba(64,17,2,.62);
}

.form{ gap: 12px; }
.field{ display:grid; gap: 8px; }
.formGrid{ display:grid; gap: 12px; }
.formGrid2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hint,
.checkRow{
  border-radius: 18px;
  border-color: rgba(64,17,2,.08);
  background: linear-gradient(180deg, rgba(255,255,255,.86), rgba(255,255,255,.70));
}
.label{
  font-size: 13px;
  letter-spacing: .01em;
}
.input,
.textarea{
  border-radius: 18px;
  border-color: rgba(64,17,2,.09);
  padding: 14px 14px;
  box-shadow: 0 8px 18px rgba(64,17,2,.03);
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.input:focus,
.textarea:focus{
  border-color: rgba(242,91,143,.32);
  box-shadow: 0 0 0 4px rgba(242,91,143,.10);
}
.deliveryCard{
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(246,186,96,.08));
}
.deliveryIntro{ margin-bottom: 12px; }
.deliveryTiles{ gap: 10px; }
.deliveryTile{
  align-items:flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(64,17,2,.08);
  border-radius: 18px;
  background: rgba(255,255,255,.76);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.deliveryTile:hover{
  transform: translateY(-1px);
  border-color: rgba(246,186,96,.28);
}
.deliveryTile input{
  margin-top: 4px;
}
.deliveryTileCopy{
  display:grid;
  gap: 4px;
}
.deliveryTileCopy strong{
  font-size: 14px;
  color: var(--choco);
}
.deliveryTileCopy small{
  color: rgba(64,17,2,.58);
  font-size: 12.5px;
  line-height: 1.45;
}
.tileDetail{
  padding-left: 12px;
}
.mapsBlock,
.waLocBlock,
.pickupBlock{ padding-left: 12px; }
.mapsRow{ gap: 10px; align-items: stretch; }
.mapsRow .input{ min-width: 0; }
.pickupBox{
  border-radius: 18px;
  border-style: solid;
  border-color: rgba(246,186,96,.18);
  background: rgba(255,255,255,.72);
}
.pickupLink{
  border-radius: 14px;
}
.btn{
  min-height: 48px;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(64,17,2,.10);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn.primary{
  background: linear-gradient(135deg, #f45f92, #f7a16b 130%);
  border-color: rgba(242,91,143,.26);
}
.btn.secondary{
  background: linear-gradient(180deg, rgba(255,255,255,.95), rgba(246,186,96,.20));
  border-color: rgba(64,17,2,.08);
}
.btnOrderMain{
  min-height: 54px;
  font-size: 15px;
}
.status{ min-height: 18px; }

.cardReviews{
  margin-top: 18px;
}
.reviewsHead{ margin-bottom: 10px; }
.reviewsSummary{
  grid-template-columns: auto 1fr;
  align-items:center;
  gap: 18px;
}
.reviewsAvg{
  min-width: 132px;
  padding: 16px 14px;
  border-radius: 22px;
  border: 1px solid rgba(64,17,2,.08);
  background: rgba(255,255,255,.76);
}
.reviewsHint{
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(64,17,2,.06);
}
.reviewCard{
  border-radius: 22px;
  border-color: rgba(64,17,2,.08);
  background: rgba(255,255,255,.76);
}
.backToTop{
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.90);
  border-color: rgba(64,17,2,.08);
}

/* Loader premium con isologo */
.amLoadingOverlay{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(27, 9, 2, .48);
  backdrop-filter: blur(12px);
  z-index: 120000;
  overflow: hidden;
}
.amLoadingBackdropFx{
  position:absolute;
  inset:-20%;
  background:
    radial-gradient(circle at 30% 30%, rgba(242,91,143,.24), transparent 26%),
    radial-gradient(circle at 70% 35%, rgba(246,186,96,.22), transparent 24%),
    radial-gradient(circle at 50% 70%, rgba(255,255,255,.10), transparent 22%);
  filter: blur(14px);
  animation: amBackdropDrift 10s ease-in-out infinite alternate;
}
.amLoadingCard{
  position:relative;
  z-index:1;
  width: min(460px, calc(100vw - 28px));
  padding: 26px 22px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.18);
  background:
    linear-gradient(180deg, rgba(32,11,3,.90), rgba(54,20,7,.86)),
    linear-gradient(135deg, rgba(242,91,143,.12), rgba(246,186,96,.10));
  box-shadow: 0 30px 80px rgba(0,0,0,.34);
  display:grid;
  gap: 18px;
  justify-items:center;
  text-align:center;
  overflow:hidden;
}
.amLoadingCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,.05) 50%, transparent 75%);
  transform: translateX(-130%);
  animation: amSheen 2.8s linear infinite;
  pointer-events:none;
}
.amLoadingVisual{
  position:relative;
  width: 124px;
  height: 124px;
  display:grid;
  place-items:center;
}
.amLoadingHalo{
  position:absolute;
  inset:10px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(246,186,96,.22), transparent 65%);
  filter: blur(6px);
  animation: amPulse 2.1s ease-in-out infinite;
}
.amLoadingMark{
  position:relative;
  width: 84px;
  height: 84px;
}
.amLoadingMark::before,
.amLoadingMark::after{
  content:"";
  position:absolute;
  inset:0;
  -webkit-mask: url("assets/Logo-Isotipo-Amared.svg") center / contain no-repeat;
  mask: url("assets/Logo-Isotipo-Amared.svg") center / contain no-repeat;
}
.amLoadingMark::before{
  background: linear-gradient(180deg, #ffd79b, #f25b8f 120%);
  filter: drop-shadow(0 14px 24px rgba(242,91,143,.20));
  animation: amFloat 3.2s ease-in-out infinite;
}
.amLoadingMark::after{
  inset:-10%;
  background: linear-gradient(100deg, transparent 20%, rgba(255,255,255,.88) 50%, transparent 82%);
  animation: amSweep 2s linear infinite;
}
.amLoadingCopy{ display:grid; gap: 8px; }
.amLoadingKicker{
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.58);
}
.amLoadingTitle{
  font-size: clamp(24px, 4vw, 28px);
  line-height: 1;
  font-weight: 1000;
  letter-spacing: -.04em;
  color: #fff9f3;
}
.amLoadingSub{
  margin-top: 0;
  color: rgba(255,249,244,.72);
  font-size: 13.5px;
  line-height: 1.5;
  font-weight: 700;
}
.amLoadingTrack{
  width: min(240px, 70vw);
  height: 5px;
  border-radius: 999px;
  overflow:hidden;
  background: rgba(64,17,2,.08);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
.amLoadingBar{
  display:block;
  width: 42%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f25b8f, #f6ba60, #ffdca7);
  box-shadow: 0 0 16px rgba(246,186,96,.35);
  animation: amBar 1.35s ease-in-out infinite;
}

@keyframes amFloat{
  0%,100%{ transform: translateY(0px); }
  50%{ transform: translateY(-7px); }
}
@keyframes amPulse{
  0%,100%{ transform: scale(.92); opacity: .75; }
  50%{ transform: scale(1.05); opacity: 1; }
}
@keyframes amSweep{
  0%{ transform: translateX(-160%) rotate(10deg); }
  100%{ transform: translateX(165%) rotate(10deg); }
}
@keyframes amBar{
  0%{ transform: translateX(-130%); }
  100%{ transform: translateX(300%); }
}
@keyframes amSheen{
  0%{ transform: translateX(-130%); }
  100%{ transform: translateX(130%); }
}
@keyframes amBackdropDrift{
  0%{ transform: scale(1) translate3d(-2%, 0, 0); }
  100%{ transform: scale(1.08) translate3d(2%, -2%, 0); }
}

@media (max-width: 980px){
  .heroShell,
  .layoutPremium{
    grid-template-columns: 1fr;
  }
  .cardOrder{
    position: static;
    top: auto;
  }
}
@media (max-width: 720px){
  .topbarInner{
    justify-content:center;
  }
  .topbarBadge{ display:none; }
  .heroCopy,
  .spotlightGlass,
  .card{
    border-radius: 24px;
  }
  .heroTitle{
    font-size: clamp(30px, 11vw, 42px);
  }
  .formGrid2,
  .reviewsSummary{
    grid-template-columns: 1fr;
  }
  .productCard{
    grid-template-columns: 1fr;
    text-align: left;
  }
  .productImg{
    min-height: 200px;
  }
  .summaryRow{
    flex-direction: column;
  }
  .mapsRow{
    flex-direction: column;
  }
  .btnOrderMain,
  .btn{
    width: 100%;
  }
}
@media (max-width: 520px){
  .amIndex{ padding-left: 14px; padding-right: 14px; }
  .heroCopy{ padding: 22px 18px; }
  .card{ padding: 16px; }
  .cardTitle{ font-size: 22px; }
  .productTop .name{ font-size: 19px; }
  .deliveryTile{ padding: 12px; }
  .amLoadingCard{
    padding: 24px 18px 18px;
    border-radius: 24px;
  }
  .amLoadingVisual{
    width: 112px;
    height: 112px;
  }
  .amLoadingMark{
    width: 74px;
    height: 74px;
  }
}


/* =========================
   INDEX REFINES · v2
   ========================= */
body{
  position: relative;
  overflow-x: hidden;
  background: linear-gradient(180deg, #fff9f5 0%, #fff6f0 28%, #fff7f2 58%, #fffaf7 100%);
}
body::before{
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(52rem 24rem at 8% 6%, rgba(242,91,143,.14), transparent 60%),
    radial-gradient(48rem 24rem at 94% 8%, rgba(246,186,96,.18), transparent 58%),
    radial-gradient(40rem 28rem at 50% 92%, rgba(242,91,143,.08), transparent 62%);
}
.page, .topbar{ position: relative; z-index: 1; }
.topbar{ background: rgba(255,249,244,.78); }

.heroPremium{ padding: 8px 0 20px; }
.heroShell{
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, .94fr);
  gap: 14px;
  align-items: stretch;
}
.heroCopy,
.spotlightGlass{
  border: 1px solid rgba(64,17,2,.10);
  border-radius: 28px;
  box-shadow: 0 20px 44px rgba(64,17,2,.08);
  min-height: 100%;
}
.heroCopy{
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,246,.82));
  text-align: center;
  display: grid;
  align-content: center;
  gap: 12px;
}
.heroEyebrow{
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(64,17,2,.09);
  background: rgba(255,255,255,.72);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.heroDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--pink);
  box-shadow: 0 0 0 6px rgba(242,91,143,.12);
}
.heroTitle{
  margin: 0;
  font-size: clamp(38px, 4vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
  font-weight: 1000;
}
.heroSubtitle{
  max-width: 640px;
  margin: 0 auto;
  font-size: clamp(15px, 1.35vw, 18px);
  line-height: 1.45;
  font-weight: 760;
  color: rgba(64,17,2,.70);
}
.heroChips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.heroChip{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(64,17,2,.09);
  background: rgba(255,255,255,.82);
  font-size: 13px;
  font-weight: 900;
  color: rgba(64,17,2,.78);
  box-shadow: 0 8px 18px rgba(64,17,2,.04);
}

.spotlightGlass{
  padding: 20px;
  background: linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,250,245,.76));
  display: grid;
  align-content: start;
  gap: 16px;
}
.spotlightMiniTop{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.spotlightMiniIso{
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(242,91,143,.16));
}
.spotlightMiniLabel{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(64,17,2,.08);
  font-size: 12px;
  font-weight: 900;
  color: rgba(64,17,2,.78);
}
.spotlightHeading{
  margin: 0;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 950;
}
.spotlightText{
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 760;
  color: rgba(64,17,2,.67);
}
.spotlightSteps{
  display: grid;
  gap: 10px;
}
.spotlightStep{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(64,17,2,.08);
  background: rgba(255,255,255,.74);
  font-weight: 850;
}
.spotlightStep span{
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(180deg, rgba(242,91,143,.18), rgba(246,186,96,.16));
}

.products{ gap: 14px; }
.productCard{
  grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
  align-items: stretch;
  gap: 16px;
  padding: 14px;
}
.productMediaWrap{
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.54));
  box-shadow: inset 0 0 0 1px rgba(64,17,2,.06), 0 14px 30px rgba(64,17,2,.06);
}
.productImg{
  width: 100%;
  height: 100%;
  min-height: 208px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.01);
}
.productTop .name{
  font-size: clamp(24px, 2vw, 34px);
  line-height: 1.02;
}
.productMetaRow{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.productTop .price{ font-size: 16px; }
.productDesc{
  font-size: 14px;
  line-height: 1.48;
}
.productBottom{ margin-top: auto; }

.deliveryTile{ cursor: pointer; }
.addressHint{ margin-top: 8px; }
.addressHint:not(.hidden){
  display: block !important;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px dashed rgba(64,17,2,.12);
  background: rgba(255,255,255,.64);
}

.amLoadingOverlay{
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 248, 242, .56);
}
.amLoadingBackdropFx{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(34rem 18rem at 18% 18%, rgba(242,91,143,.16), transparent 64%),
    radial-gradient(30rem 16rem at 82% 16%, rgba(246,186,96,.18), transparent 64%),
    radial-gradient(36rem 18rem at 50% 86%, rgba(255,255,255,.34), transparent 70%);
}
.amLoadingCard{
  position: relative;
  z-index: 1;
  width: min(540px, calc(100vw - 32px));
  border-radius: 30px;
  padding: 26px 24px 22px;
  display: grid;
  gap: 14px;
  justify-items: center;
  border: 1px solid rgba(255,255,255,.82);
  background: linear-gradient(180deg, rgba(255,252,249,.98), rgba(255,244,236,.95));
  box-shadow: 0 28px 72px rgba(64,17,2,.16);
  overflow: hidden;
}
.amLoadingCard::before{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.52), transparent 55%, rgba(246,186,96,.10));
}
.amLoadingBrand{
  width: clamp(108px, 20vw, 150px);
  height: auto;
  display: block;
  filter: brightness(1.02) drop-shadow(0 10px 20px rgba(0,0,0,.16));
}
.amLoadingVisual{
  position: relative;
  width: 156px;
  height: 122px;
  display: grid;
  place-items: center;
}
.amLoadingHalo{
  position: absolute;
  inset: 50% auto auto 50%;
  width: 132px;
  height: 132px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(246,186,96,.24), rgba(242,91,143,.18) 45%, transparent 72%);
  filter: blur(4px);
  animation: amPulseGlow 1.8s ease-in-out infinite;
}
.amLoadingLogoWrap{
  position: relative;
  width: 104px;
  height: 86px;
  display: grid;
  place-items: center;
  animation: amFloatMark 1.6s ease-in-out infinite;
}
.amLoadingIsoImg{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 14px 24px rgba(0,0,0,.18));
}
.amLoadingCopy{ display: grid; gap: 8px; text-align: center; }
.amLoadingKicker{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(110,58,32,.72);
}
.amLoadingTitle{
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.02;
  font-weight: 1000;
  color: #401102;
}
.amLoadingSub{
  max-width: 420px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 760;
  color: rgba(64,17,2,.72);
}
.amLoadingMeta{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(64,17,2,.70);
  font-size: 13px;
  font-weight: 850;
}
.amLoadingPercent{
  font-size: 20px;
  font-weight: 1000;
  color: #fff8f2;
}
.amLoadingTrack{
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(64,17,2,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.amLoadingBar{
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f25b8f 0%, #f8a36f 55%, #ffe3b7 100%);
  box-shadow: 0 0 18px rgba(246,186,96,.25);
  transition: width .18s ease;
}
@keyframes amPulseGlow{
  0%, 100%{ opacity: .82; transform: translate(-50%, -50%) scale(.94); }
  50%{ opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}
@keyframes amFloatMark{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-4px); }
}

@media (max-width: 920px){
  .heroShell{ grid-template-columns: 1fr; }
  .heroCopy, .spotlightGlass{ border-radius: 24px; }
  .heroEyebrow{ justify-self: center; }
}
@media (max-width: 640px){
  .heroTitle{ font-size: clamp(28px, 9vw, 42px); }
  .heroSubtitle{ font-size: 15px; }
  .productCard{ grid-template-columns: 1fr; }
  .productImg{ min-height: 190px; }
  .productTop .name{ font-size: 18px; line-height: 1.08; }
  .productMetaRow{ justify-content: center; }
  .productInfo{ align-items: center; text-align: center; }
  .productBottom{ width: 100%; justify-content: center; }
  .amLoadingCard{ padding: 22px 18px 18px; border-radius: 26px; }
  .amLoadingVisual{ width: 136px; height: 110px; }
  .amLoadingLogoWrap{ width: 94px; height: 78px; }
  .amLoadingTitle{ font-size: 22px; }
  .amLoadingSub{ font-size: 14px; }
}


/* =========================
   INDEX v3: catálogo + reviews desktop
   ========================= */
@media (min-width: 981px){
  .amIndex{
    display:grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
    gap: 18px;
    align-items:start;
  }

  .hero{
    grid-column: 1 / -1;
  }

  .layoutPremium{
    display: contents;
  }

  .cardProducts{
    grid-column: 1;
  }

  .cardOrder{
    grid-column: 2;
    grid-row: 2 / span 2;
    align-self: start;
  }

  .cardReviews{
    grid-column: 1;
    margin-top: 0;
  }
}

@media (max-width: 980px){
  .amIndex{
    display:block;
  }

  .layoutPremium{
    display:grid;
    grid-template-columns: 1fr;
  }

  .cardReviews{
    margin-top: 18px;
  }
}

/* Imágenes del catálogo: mostrar el postre completo */
.productCard{
  grid-template-columns: minmax(220px, 232px) minmax(0, 1fr);
  align-items: center;
}

.productMediaWrap{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 52%),
    rgba(64,17,2,.06);
  box-shadow: inset 0 0 0 1px rgba(64,17,2,.05);
}

.productImg{
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: transform;
}

.productCard:hover .productImg{
  transform: translateZ(0);
}

@media (max-width: 720px){
  .productCard{
    grid-template-columns: 1fr;
  }

  .productMediaWrap{
    aspect-ratio: 16 / 9;
  }

  .productImg{
    min-height: 0;
  }
}

@media (min-width: 981px){
  .cardReviews .reviewsList{
    gap: 12px;
  }
}


/* ===== Admin de la página de pedidos ===== */
.indexAdminSection{ margin-top:14px; }
.indexAdminSection.hidden{ display:none !important; }
.indexAdminIntro{
  margin-top:4px;
  color: rgba(64,17,2,.72);
  font-weight: 800;
  line-height: 1.45;
}
.sectionHeadActions{ display:flex; align-items:center; gap:10px; flex-wrap:wrap; justify-content:flex-end; }
.indexAdminGrid.isSingle{ grid-template-columns: minmax(0,1fr); }
.indexAdminDesktopOpinions{ min-height:42px; }
.indexAdminTopbarAction{
  display:none;
  min-height:46px;
  padding:0 16px;
  border-radius:18px;
  border:1px solid rgba(242,91,143,.18);
  background:linear-gradient(180deg, rgba(251,240,244,.98), rgba(247,232,237,.98));
  color:var(--choco);
  font-size:14px;
  font-weight:900;
  box-shadow:0 10px 22px rgba(64,17,2,.06);
  cursor:pointer;
  align-items:center;
  justify-content:center;
}
.indexAdminTopbarAction:hover{
  transform: translateY(-1px);
}
body.is-index-admin-view .indexAdminTopbarAction.isVisible{
  display:inline-flex;
}
@media (max-width: 720px){
  .indexAdminTopbarAction{ display:none !important; }
  .indexAdminDesktopOpinions{ display:none !important; }
}
.indexAdminGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 12px;
  margin-top: 14px;
}
.indexAdminCard{ gap:12px; }
.indexAdminPriceList{ display:grid; gap:10px; }
.indexAdminPriceRow{
  display:grid;
  grid-template-columns: minmax(0,1fr) 152px;
  gap:10px;
  align-items:end;
  padding: 10px 12px;
  border:1px solid var(--border);
  border-radius: 14px;
  background: rgba(255,255,255,.72);
}
.indexAdminPriceName{ font-weight:950; line-height:1.12; }
.indexAdminPriceHint{ margin-top:4px; font-size:12.5px; color: rgba(64,17,2,.6); font-weight:700; }
.indexAdminField .input{ text-align:right; }
.indexAdminActions{ gap:10px; flex-wrap:wrap; margin-top:4px; }
.indexAdminStatus{ min-height: 18px; }
.indexAdminCopy{ line-height:1.45; }
@media (max-width: 820px){
  .indexAdminGrid{ grid-template-columns:1fr; }
}
@media (max-width: 520px){
  .indexAdminPriceRow{ grid-template-columns:1fr; }
  .indexAdminField .input{ text-align:left; }
}

/* ===== Loader exclusivo del index ===== */
body.is-loading{ overflow:hidden; }
#orderLoadingOverlay{ z-index: 31000 !important; }
.amOrderLoadingOverlay{
  position: fixed;
  inset: 0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:16px;
  background: rgba(22,10,6,.48);
  backdrop-filter: blur(12px);
}
.amOrderLoadingBackdropFx{
  position:absolute;
  inset:0;
  background:
    radial-gradient(420px 220px at 18% 18%, rgba(242,91,143,.20), transparent 62%),
    radial-gradient(440px 220px at 82% 12%, rgba(246,186,96,.22), transparent 62%),
    radial-gradient(560px 260px at 50% 100%, rgba(255,255,255,.10), transparent 70%);
  pointer-events:none;
}
.amOrderLoadingCard{
  position:relative;
  width:min(560px, 94vw);
  border-radius: 28px;
  padding: 26px 22px 20px;
  border:1px solid rgba(255,255,255,.22);
  background: linear-gradient(180deg, rgba(255,253,252,.96), rgba(255,248,243,.92));
  box-shadow: 0 26px 80px rgba(0,0,0,.26);
  display:grid;
  gap: 14px;
  justify-items:center;
  overflow:hidden;
}
.amOrderLoadingCard::before{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,.42), transparent 48%, rgba(246,186,96,.10));
  pointer-events:none;
}
.amOrderLoadingBrand{ height:36px; width:auto; display:block; position:relative; z-index:1; }
.amOrderLoadingVisual{ position:relative; width:138px; height:138px; display:grid; place-items:center; z-index:1; }
.amOrderLoadingHalo{
  position:absolute;
  inset: 6px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(246,186,96,.34) 0%, rgba(242,91,143,.16) 48%, rgba(255,255,255,0) 72%);
  filter: blur(2px);
  animation: amOrderPulse 1.7s ease-in-out infinite;
}
.amOrderLoadingLogoWrap{
  position:relative;
  width:88px;
  height:88px;
  border-radius:999px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(251,239,229,.92));
  border:1px solid rgba(64,17,2,.08);
  display:grid;
  place-items:center;
  box-shadow: 0 18px 30px rgba(64,17,2,.12);
}
.amOrderLoadingIsoImg{ width:52px; height:52px; object-fit:contain; display:block; animation: amOrderFloat 1.7s ease-in-out infinite; }
.amOrderLoadingCopy{ position:relative; z-index:1; text-align:center; display:grid; gap:6px; }
.amOrderLoadingKicker{ font-size:12px; text-transform:uppercase; letter-spacing:.14em; font-weight:950; color: rgba(64,17,2,.56); }
.amOrderLoadingTitle{ font-size:26px; line-height:1.06; font-weight:950; color:var(--choco); }
.amOrderLoadingSub{ font-size:14px; line-height:1.45; color: rgba(64,17,2,.74); font-weight:750; }
.amOrderLoadingMeta{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:12px; position:relative; z-index:1; }
.amOrderLoadingStep{ font-size:13px; font-weight:900; color: rgba(64,17,2,.72); }
.amOrderLoadingPercent{ font-size:18px; font-weight:950; color:var(--choco); }
.amOrderLoadingTrack{ width:100%; height:12px; border-radius:999px; background: rgba(64,17,2,.10); overflow:hidden; position:relative; z-index:1; }
.amOrderLoadingBar{ display:block; width:0%; height:100%; border-radius:inherit; background: linear-gradient(90deg, rgba(242,91,143,.95), rgba(246,186,96,.95)); box-shadow: 0 4px 12px rgba(242,91,143,.25); transition: width .18s ease; }
@keyframes amOrderPulse{ 0%,100%{ transform:scale(.96); opacity:.82; } 50%{ transform:scale(1.04); opacity:1; } }
@keyframes amOrderFloat{ 0%,100%{ transform:translateY(0px) scale(1); } 50%{ transform:translateY(-3px) scale(1.03); } }
@media (max-width: 560px){
  .amOrderLoadingCard{ padding: 22px 18px 18px; border-radius: 24px; }
  .amOrderLoadingVisual{ width:124px; height:124px; }
  .amOrderLoadingTitle{ font-size: 22px; }
  .amOrderLoadingSub{ font-size: 13px; }
}


/* ===== Vista admin de la página de pedidos ===== */
body.is-index-admin-view .cardOrder,
body.is-index-admin-view .btnOrderMain,
body.is-index-admin-view .topbarBadge:not(.indexAdminTopbarAction),
body.is-index-admin-view #btnOpenReviewModal{
  display: none !important;
}
body.is-index-admin-view .pageGrid{
  grid-template-columns: 1fr;
}
body.is-index-admin-view .cardCatalog,
body.is-index-admin-view .cardReviews,
body.is-index-admin-view .indexAdminSection{
  grid-column: 1 / -1;
}
body.is-index-admin-view .layoutPremium{
  grid-template-columns: 1fr;
}
.productAdminNote{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 14px;
  border-radius:16px;
  border:1px dashed rgba(64,17,2,.12);
  background:linear-gradient(180deg, rgba(255,255,255,.86), rgba(252,245,239,.88));
  color:rgba(64,17,2,.72);
  font-size:13px;
  font-weight:900;
  text-align:center;
}
.indexAdminMobileBar{
  position:fixed;
  left:10px;
  right:10px;
  bottom:calc(env(safe-area-inset-bottom, 0px) + 10px);
  z-index:9500;
  display:none;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:28px;
  border:1px solid rgba(64,17,2,.10);
  background:rgba(254,246,239,.90);
  box-shadow:0 14px 34px rgba(64,17,2,.14);
  backdrop-filter:blur(10px);
}
.indexAdminMobileBar.isVisible{
  display:grid;
  grid-template-columns:56px minmax(0,1fr) 56px;
}
.indexAdminMobileCenter{
  min-width:0;
  width:100%;
  border-radius:999px;
  border:1px solid rgba(64,17,2,.10);
  background:rgba(255,255,255,.94);
  padding:3px;
  display:block;
}
.indexAdminMobilePill{
  width:100%;
  min-height:48px;
  border:0;
  border-radius:999px;
  background:linear-gradient(180deg, rgba(242,91,143,.16), rgba(246,186,96,.12));
  color:var(--choco);
  font-weight:950;
  font-size:16px;
  cursor:pointer;
}
.indexAdminMobileBtn{
  width:56px;
  height:56px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.92);
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(252,247,242,.92));
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 18px rgba(64,17,2,.08);
  color:var(--choco);
  cursor:pointer;
}
.indexAdminMobileBtn .ico{ font-size:20px; line-height:1; }
.indexAdminMobileBtn .txt{ display:none; }
.indexAdminMobileBtn.isIconOnly{ padding:0; }
@media (min-width: 721px){
  .indexAdminMobileBar{ display:none !important; }
}
body.is-index-admin-view .page{
  padding-bottom:108px;
}


/* ===== Paleta consistente para acciones compartidas ===== */
#btnHeaderHub,
#btnDeliveryHub,
#btnKitchenHub,
#btnCostsHub,
#btnBack,
#btnIndexAdminDesktopHub{
  border-color: rgba(242,91,143,.20) !important;
  background: linear-gradient(180deg, rgba(251,240,244,.98), rgba(247,232,237,.98)) !important;
  color: var(--choco) !important;
}
#btnHubReload,
#btnHeaderRefresh,
#btnRefreshTop,
#btnRefresh,
#btnReload{
  border-color: rgba(224,160,49,.55) !important;
  background: linear-gradient(180deg, rgba(246,196,110,.96), rgba(240,183,84,.96)) !important;
  color: #401102 !important;
}
#btnHeaderHistory,
#btnHistory{
  border-color: rgba(64,17,2,.10) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,239,232,.98)) !important;
  color: var(--choco) !important;
}
#btnHeaderHub:hover,
#btnDeliveryHub:hover,
#btnKitchenHub:hover,
#btnCostsHub:hover,
#btnBack:hover,
#btnIndexAdminDesktopHub:hover,
#btnHubReload:hover,
#btnHeaderRefresh:hover,
#btnRefreshTop:hover,
#btnRefresh:hover,
#btnReload:hover,
#btnHeaderHistory:hover,
#btnHistory:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(64,17,2,.10) !important;
}


/* ===== Loader compacto unificado · proyecto ===== */
.amLoadingOverlay{
  background: rgba(255,248,242,.66) !important;
  backdrop-filter: blur(10px) !important;
  -webkit-backdrop-filter: blur(10px) !important;
  padding: 16px !important;
}
.amLoadingBackdropFx{
  background:
    radial-gradient(34rem 18rem at 18% 18%, rgba(242,91,143,.14), transparent 64%),
    radial-gradient(30rem 16rem at 82% 16%, rgba(246,186,96,.16), transparent 64%),
    radial-gradient(34rem 18rem at 50% 86%, rgba(255,255,255,.28), transparent 70%) !important;
}
.amLoadingCard{
  width: min(420px, calc(100vw - 32px)) !important;
  border-radius: 24px !important;
  padding: 16px 18px !important;
  gap: 10px !important;
  border: 1px solid rgba(255,255,255,.84) !important;
  background: linear-gradient(180deg, rgba(255,252,249,.98), rgba(255,244,236,.95)) !important;
  box-shadow: 0 18px 40px rgba(64,17,2,.12) !important;
  justify-items: stretch !important;
}
.amLoadingCard::before{ opacity:.72; }
.amLoadingVisual,
.amLoadingHalo,
.amLoadingLogoWrap,
.amLoadingBrand{ display:none !important; }
.amLoadingRow{
  display:grid !important;
  grid-template-columns:auto minmax(0,1fr) !important;
  gap:12px !important;
  align-items:center !important;
}
.amLoadingTitle{
  font-size: 18px !important;
  line-height: 1.08 !important;
  font-weight: 950 !important;
  text-align: left !important;
}
.amLoadingSub{
  max-width: none !important;
  margin-top: 4px !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
  font-weight: 800 !important;
  text-align: left !important;
}
.amSpinner{
  width: 18px !important;
  height: 18px !important;
  border-width: 2px !important;
}
@media (max-width: 560px){
  .amLoadingCard{
    width:min(360px, calc(100vw - 28px)) !important;
    padding:14px 16px !important;
  }
  .amLoadingTitle{ font-size:16px !important; }
  .amLoadingSub{ font-size:12.5px !important; }
}

/* ===== Ajuste catálogo: imagen estable + cuadrada en escritorio ===== */
.productCard{
  grid-template-columns: minmax(220px, 232px) minmax(0, 1fr);
  align-items: center;
}

.productMediaWrap{
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  contain: paint;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.10), transparent 52%),
    rgba(64,17,2,.06);
  box-shadow: inset 0 0 0 1px rgba(64,17,2,.05);
}

.productImg{
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  backface-visibility: hidden;
  transform: translateZ(0);
  will-change: auto;
  transition: transform .22s ease, opacity .22s ease;
}

.productCard:hover .productImg{
  transform: translateZ(0) scale(1.02);
}

@media (max-width: 720px){
  .productCard{
    grid-template-columns: 1fr;
  }

  .productMediaWrap{
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
}


/* =========================
   INDEX hero + pasos rápidos refinados
   ========================= */
.heroOrderIntro{
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(64,17,2,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.88), rgba(255,250,245,.78)),
    linear-gradient(135deg, rgba(242,91,143,.07), rgba(246,186,96,.10));
  box-shadow: 0 22px 44px rgba(64,17,2,.08);
}
.heroOrderIntro::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(42rem 20rem at 8% 8%, rgba(242,91,143,.10), transparent 58%),
    radial-gradient(30rem 16rem at 92% 14%, rgba(246,186,96,.12), transparent 58%);
  pointer-events:none;
}
.heroOrderIntro .heroCopy,
.heroOrderIntro .spotlightGlass{
  position: relative;
  z-index: 1;
  min-height: 100%;
  background: transparent;
  border: 0;
  box-shadow: none;
}
.heroOrderIntro .heroCopy::after,
.heroOrderIntro .spotlightGlass::after{
  display:none;
}
.heroOrderIntro .heroCopy{
  padding: clamp(26px, 3vw, 38px);
  display:grid;
  align-content:center;
  gap: 14px;
  text-align:center;
}
.heroOrderIntro .heroEyebrow{
  justify-self: center;
}
.heroOrderIntro .heroTitle{
  margin: 0;
  font-size: clamp(38px, 4.6vw, 62px);
}
.heroOrderIntro .heroSubtitle{
  max-width: 650px;
  margin: 0 auto;
}
.heroOrderIntro .spotlightGlass{
  padding: clamp(24px, 3vw, 34px);
  border-left: 1px solid rgba(64,17,2,.08);
  display:grid;
  align-content:center;
  gap: 16px;
}
.heroOrderIntro .spotlightHeading{
  margin: 0;
  font-size: clamp(30px, 2.5vw, 42px);
  line-height: 1.02;
}
.heroOrderIntro .spotlightText{
  margin: 0;
  font-size: clamp(15px, 1.25vw, 18px);
}
.heroOrderIntro .spotlightSteps{
  display:grid;
  gap: 12px;
  margin-top: 2px;
}
.heroOrderIntro .spotlightStep{
  width: 100%;
  border: 1px solid rgba(64,17,2,.08);
  border-radius: 20px;
  background: rgba(255,255,255,.84);
  box-shadow: 0 10px 24px rgba(64,17,2,.05);
  display:grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items:center;
  gap: 14px;
  padding: 14px 16px;
  text-align:left;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.heroOrderIntro .spotlightStep:hover,
.heroOrderIntro .spotlightStep:focus-visible{
  transform: translateY(-1px);
  border-color: rgba(242,91,143,.28);
  box-shadow: 0 14px 28px rgba(64,17,2,.08);
  outline: none;
}
.heroOrderIntro .spotlightStepNum{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 950;
  color: #5a1803;
  background: linear-gradient(180deg, rgba(242,91,143,.18), rgba(246,186,96,.16));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55);
}
.heroOrderIntro .spotlightStepCopy{
  min-width: 0;
  display:grid;
  gap: 3px;
}

.heroOrderIntro .spotlightStep{
  min-width: 0;
}
.heroOrderIntro .spotlightStepCopy{
  min-width: 0;
  width: auto;
  height: auto;
  border-radius: 0;
  display: grid;
  place-items: initial;
  flex: 1 1 auto;
  background: transparent !important;
  box-shadow: none !important;
}
.heroOrderIntro .spotlightStepCopy strong,
.heroOrderIntro .spotlightStepCopy small{
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
}
.heroOrderIntro .spotlightStepCopy strong{
  display:block;
  font-size: 16px;
  line-height: 1.18;
  font-weight: 900;
  color: #401102;
}
.heroOrderIntro .spotlightStepCopy small{
  display:block;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 700;
  color: rgba(64,17,2,.64);
}

.heroOrderIntro .spotlightStepCopy strong,
.heroOrderIntro .spotlightStepCopy small{
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 980px){
  .heroOrderIntro{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
  }
  .heroOrderIntro::before{ display:none; }
  .heroOrderIntro .heroCopy,
  .heroOrderIntro .spotlightGlass{
    border-radius: 26px;
    border: 1px solid rgba(64,17,2,.10);
    background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,250,245,.82));
    box-shadow: 0 18px 34px rgba(64,17,2,.08);
  }
  .heroOrderIntro .spotlightGlass{
    border-left: 1px solid rgba(64,17,2,.10);
  }
}

@media (max-width: 640px){
  .heroOrderIntro .heroCopy,
  .heroOrderIntro .spotlightGlass{
    padding: 22px 18px;
    border-radius: 22px;
  }
  .heroOrderIntro .heroTitle{
    font-size: clamp(28px, 9vw, 42px);
  }
  .heroOrderIntro .spotlightHeading{
    font-size: clamp(24px, 8vw, 34px);
    text-align: center;
  }
  .heroOrderIntro .spotlightText{
    text-align: center;
  }
  .heroOrderIntro .spotlightStep{
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    padding: 12px 14px;
    border-radius: 18px;
  }
  .heroOrderIntro .spotlightStepNum{
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
  .heroOrderIntro .spotlightStepCopy strong{
    font-size: 15px;
  }
  .heroOrderIntro .spotlightStepCopy small{
    font-size: 12px;
  }
}


/* INDEX v16: tutoriales entrega + nombre automático opiniones */
.tutorialAction,
.pickupActions{
  margin-top: 10px;
}
.tutorialBtn{
  width: 100%;
  min-height: 46px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(242,91,143,.18), rgba(242,91,143,.28));
  border: 1px solid rgba(242,91,143,.24);
  color: var(--choco);
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(64,17,2,.08);
}
.tutorialBtn:hover{
  filter: brightness(.99);
}
.tutorialBtn[data-ready="0"]{
  background: linear-gradient(180deg, rgba(242,91,143,.12), rgba(246,186,96,.20));
}
.waLocBlock{
  display: grid;
  gap: 8px;
}
.waLocCopy{
  color: rgba(64,17,2,.66);
}
.pickupInfoDetails{
  margin-top: 12px;
  border: 1px solid rgba(242,91,143,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.68);
  overflow: hidden;
}
.pickupInfoDetails summary{
  list-style: none;
  cursor: pointer;
  padding: 14px 16px;
  font-weight: 900;
  color: var(--choco);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pickupInfoDetails summary::-webkit-details-marker{ display:none; }
.pickupInfoDetails summary::after{
  content: "▾";
  font-size: 14px;
  color: rgba(64,17,2,.70);
}
.pickupInfoDetails[open] summary::after{ content: "▴"; }
.pickupInfoBody{
  display: grid;
  gap: 12px;
  padding: 0 16px 16px;
}
.pickupPaymentPreview,
.modalPickupBreakdown{
  display: grid;
  gap: 8px;
}
.pickupPaymentPreview{
  padding: 12px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,248,243,.96), rgba(255,240,235,.94));
  border: 1px solid rgba(242,91,143,.14);
}
.pickupPaymentLine,
.modalTotalLine.compact{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pickupPaymentLine{
  font-size: 14px;
  color: rgba(64,17,2,.78);
}
.pickupPaymentLine strong,
.modalPickupBreakdown strong{
  color: var(--choco);
}
.pickupPaymentLine.accent{
  color: #9b174c;
}
.modalPickupBreakdown{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px dashed rgba(64,17,2,.12);
}
.reviewIdentityStatus{
  margin-top: 8px;
  min-height: 18px;
}
.reviewIdentityStatus[data-tone="loading"]{
  color: rgba(64,17,2,.68);
}
.reviewIdentityStatus[data-tone="success"]{
  color: #2f7d32;
}
.reviewIdentityStatus[data-tone="warning"]{
  color: #a86418;
}
.reviewIdentityStatus[data-tone="error"]{
  color: #b00020;
}
#reviewName[readonly]{
  background: rgba(255,248,243,.92);
  color: rgba(64,17,2,.78);
}
@media (max-width: 720px){
  .tutorialBtn{
    min-height: 48px;
  }
}


/* ===== Tipografías AMARED: Nunito base + Baloo 2 para destacados ===== */
body,
input,
textarea,
select,
button{
  font-family: var(--font-main);
}

.heroTitle,
.spotlightHeading,
.cardTitle,
.miniTitle,
.pickupTitle,
.modalTitle,
.alertTitle,
.amOrderLoadingTitle,
.amHubBootTitle,
.amLoadingTitle,
.amLoginTitle,
.amSectionTitle,
.hubBrandTitle,
.hubLoginTitle,
.hubWelcomeTitle,
.deliveryBrandTitle,
.adminBrandTitle,
.drawerTitle,
.editModalTitle,
.editModalCardTitle,
.pMetaTitle,
.pBottomTitle,
.productTop .name{
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .005em;
}

.heroSubtitle,
.spotlightText,
.productTop .price,
.itemPrice,
.totalLine,
.pMiniTable th,
.pMiniTable td,
.unitMobileValue,
.unitMobileLabel,
.recipeNoMarginTitle,
.checkRow,
.waOptHint{
  font-family: var(--font-main);
}

.btn,
.btnLinkLike,
.iconBtn,
.stepper button,
.pill,
.statusBadge{
  font-family: var(--font-main);
  font-weight: 800;
}

/* Baloo 2 funciona mejor con títulos cortos; se evita aplicarla a párrafos largos. */
p,
.hint,
.note,
.help,
.description,
.productTop .desc,
.modalBody,
.formHint{
  font-family: var(--font-main);
}


/* ===== AMARED rutas: barrio/sector en pedido ===== */
.neighborhoodField{
  position: relative;
  z-index: 6;
}
.neighborhoodCombo{
  position: relative;
}
.neighborhoodCombo .input{
  padding-right: 56px;
}
.neighborhoodToggle{
  position: absolute;
  top: 50%;
  right: 10px;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border: 1px solid rgba(242,91,143,.20);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,235,243,.96));
  color: transparent;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(242,91,143,.12);
  transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.neighborhoodToggle::before{
  content: "";
  width: 9px;
  height: 9px;
  border-right: 2.5px solid var(--brand, #f25b8f);
  border-bottom: 2.5px solid var(--brand, #f25b8f);
  border-radius: 1px;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .2s ease;
}
.neighborhoodField.is-open .neighborhoodToggle::before{
  transform: translateY(2px) rotate(225deg);
}
.neighborhoodCombo:focus-within .neighborhoodToggle,
.neighborhoodToggle:hover,
.neighborhoodToggle:focus-visible{
  background: linear-gradient(180deg, #fff, rgba(255,223,236,.98));
  border-color: rgba(242,91,143,.34);
  box-shadow: 0 10px 24px rgba(242,91,143,.20);
  outline: none;
}
.neighborhoodToggle:active{
  transform: translateY(-50%) scale(.96);
}
.neighborhoodSuggest{
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% - 2px);
  z-index: 80;
  max-height: 280px;
  overflow-y: auto;
  padding: 8px;
  border-radius: 18px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(242,91,143,.18);
  box-shadow: 0 18px 45px rgba(64,17,2,.18);
  backdrop-filter: blur(10px);
}
.neighborhoodSuggest.hidden{
  display: none;
}
.neighborhoodSuggestItem{
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 13px;
  padding: 10px 12px;
  text-align: left;
  color: var(--ink, #401102);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.neighborhoodSuggestItem:hover,
.neighborhoodSuggestItem:focus-visible{
  outline: none;
  background: rgba(242,91,143,.1);
}
.neighborhoodSuggestManual{
  background: rgba(242,91,143,.08);
  color: var(--brand-dark, #a72f62);
  margin-bottom: 4px;
}
.neighborhoodSuggestItem small,
.neighborhoodSuggestNote,
.neighborhoodSuggestEmpty{
  color: rgba(64,17,2,.62);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}
.neighborhoodSuggestNote,
.neighborhoodSuggestEmpty{
  padding: 9px 12px;
}
.neighborhoodHint{
  padding: 9px 11px;
  border-radius: 14px;
  background: rgba(242,91,143,.07);
  border: 1px solid rgba(242,91,143,.12);
  color: rgba(64,17,2,.68);
  font-weight: 800;
}
@media (max-width: 720px){
  .neighborhoodSuggest{
    max-height: 240px;
    border-radius: 16px;
  }
  .neighborhoodSuggestItem{
    padding: 11px 12px;
    font-size: 14px;
  }
  .neighborhoodHint{
    font-size: 12.5px;
    line-height: 1.35;
  }
}

/* ===== Fondo continuo AMARED v38 ===== */
html{
  min-height:100%;
  background:#fff9f5;
}
body{
  min-height:100vh;
  min-height:100dvh;
  background-color:#fff9f5;
  background-repeat:no-repeat;
  background-size:100% 100%;
}
body::before{
  min-height:100vh;
  min-height:100dvh;
}
body.costsPage,
body.kitchenPage,
body.deliveryPage,
body.adminPage,
body.hubPage,
body.profilesPage{
  min-height:100vh;
  min-height:100dvh;
}

/* ===== Admin: selector de barrio y link Maps para pagos v27 ===== */
.adminNeighborhoodField{
  z-index: 40;
}
.adminNeighborhoodField .adminNeighborhoodHelp{
  margin-top: 7px;
  padding: 8px 10px;
  border-radius: 13px;
  background: rgba(242,91,143,.06);
  border: 1px solid rgba(242,91,143,.10);
  color: rgba(64,17,2,.68);
  font-weight: 800;
  line-height: 1.35;
}
.adminLocationMethodPill,
.adminLocationLinkBlock{
  border: 1px solid rgba(242,91,143,.14);
  border-radius: 18px;
  background: rgba(255,246,250,.72);
  padding: 12px 14px;
}
.adminLocationMethodPill{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.adminLocationMethodPill span{
  color: rgba(64,17,2,.62);
  font-size: 12px;
  font-weight: 900;
}
.adminLocationMethodPill strong{
  color: var(--brand-dark, #a72f62);
  font-weight: 950;
}
.adminLocationLinkBlock.is-whatsapp{
  background: linear-gradient(180deg, rgba(255,246,250,.92), rgba(255,238,246,.78));
  border-color: rgba(242,91,143,.22);
}
.adminLocationLinkBlock .input{
  margin-top: 7px;
}
@media (max-width: 720px){
  .adminLocationMethodPill,
  .adminLocationLinkBlock{
    border-radius: 16px;
    padding: 11px 12px;
  }
}

/* ===== Index: redes sociales AMARED v40: accesos compactos ===== */
.socialConnect{
  margin: 0 0 18px;
  padding: clamp(16px, 2vw, 22px);
  display: grid;
  grid-template-columns: minmax(180px, .78fr) minmax(360px, 1.22fr);
  align-items: center;
  gap: clamp(14px, 2.2vw, 26px);
  overflow: hidden;
  position: relative;
  min-height: 118px;
  background:
    radial-gradient(220px 140px at 94% 18%, rgba(242,91,143,.13), transparent 70%),
    radial-gradient(240px 160px at 4% 100%, rgba(246,186,96,.12), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.82));
}
.socialConnect::before{
  content:"";
  position:absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, rgba(242,91,143,.88), rgba(246,186,96,.72));
  border-radius: 999px;
  margin: 18px 0 18px 18px;
}
.socialConnect::after{
  content:"";
  position:absolute;
  inset: -70px -80px auto auto;
  width:190px;
  height:190px;
  border-radius:999px;
  background: radial-gradient(circle, rgba(242,91,143,.12), transparent 68%);
  pointer-events:none;
}
.socialConnectCopy{
  position: relative;
  z-index: 1;
  min-width: 0;
  padding-left: 18px;
}
.socialConnect .sectionKicker{
  margin-bottom: 4px;
  color: rgba(64,17,2,.50);
}
.socialConnect .cardTitle{
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: .96;
  letter-spacing: -.025em;
}
.socialConnectText{ display:none; }
.socialActions{
  position: relative;
  z-index: 1;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}
.socialLink{
  border: 1px solid rgba(242,91,143,.18);
  background: rgba(255,255,255,.86);
  color: var(--choco);
  border-radius: 22px;
  min-height: 68px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  font-family: var(--font-main);
  font-weight: 950;
  letter-spacing: .01em;
  cursor:pointer;
  box-shadow: 0 14px 30px rgba(64,17,2,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}
.socialLink:hover{
  transform: translateY(-2px);
  border-color: rgba(242,91,143,.36);
  box-shadow: 0 18px 38px rgba(64,17,2,.11);
  background: #fff;
}
.socialLink:active{ transform: translateY(0); }
.socialIcon{
  width: 38px;
  height: 38px;
  border-radius: 999px;
  display:inline-grid;
  place-items:center;
  flex: 0 0 auto;
  font-size: 20px;
  line-height: 1;
}
.socialIcon i{
  display:block;
  line-height: 1;
}
.socialLabel{
  white-space: nowrap;
  font-size: 15px;
}
.socialInstagram .socialIcon{
  background: linear-gradient(135deg, rgba(242,91,143,.18), rgba(246,186,96,.18));
  color: #d93678;
}
.socialTikTok .socialIcon{
  background: rgba(64,17,2,.08);
  color: var(--choco);
}
.socialWhatsApp .socialIcon{
  background: rgba(37,211,102,.13);
  color: #168c48;
}
@media (min-width: 1100px){
  .socialConnect{
    padding-left: 26px;
    padding-right: 24px;
  }
  .socialActions{ max-width: 620px; justify-self: end; width: 100%; }
}
@media (max-width: 860px){
  .socialConnect{
    grid-template-columns: 1fr;
    padding: 18px;
    gap: 14px;
    min-height: 0;
  }
  .socialConnect::before{ margin: 18px 0 18px 16px; }
  .socialActions{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .socialLink{
    min-height: 58px;
    border-radius: 20px;
    padding: 10px;
  }
  .socialLabel{ font-size: 13px; }
}
@media (max-width: 560px){
  .socialConnect{
    border-radius: 24px;
  }
  .socialActions{
    grid-template-columns: 1fr;
  }
  .socialLink{
    justify-content:flex-start;
    min-height: 54px;
    padding: 10px 14px;
  }
  .socialIcon{
    width: 36px;
    height: 36px;
    font-size: 19px;
  }
  .socialLabel{ font-size: 15px; }
}

/* ===== Index: redes sociales integradas al hero v41 ===== */
.srOnly{
  position:absolute !important;
  width:1px !important;
  height:1px !important;
  padding:0 !important;
  margin:-1px !important;
  overflow:hidden !important;
  clip:rect(0,0,0,0) !important;
  white-space:nowrap !important;
  border:0 !important;
}

.heroPremium{
  padding-bottom: clamp(10px, 1.6vw, 16px);
}

.heroSocialDock{
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 14px;
  margin: -4px 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(242,91,143,.16);
  background: rgba(255,255,255,.72);
  box-shadow: 0 14px 34px rgba(64,17,2,.08);
  backdrop-filter: blur(12px);
}

.socialIconBtn{
  width: 48px;
  height: 48px;
  border: 1px solid rgba(242,91,143,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: var(--choco, #401102);
  display: inline-grid;
  place-items: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(64,17,2,.07);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.socialIconBtn:hover,
.socialIconBtn:focus-visible{
  transform: translateY(-2px);
  border-color: rgba(242,91,143,.34);
  background: #fff;
  box-shadow: 0 16px 32px rgba(64,17,2,.11);
  outline: none;
}

.socialIconBtn:active{
  transform: translateY(0) scale(.97);
}

.socialIconBtn.socialInstagram{
  color: #d93678;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,236,244,.92));
}

.socialIconBtn.socialTikTok{
  color: #221313;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(64,17,2,.055));
}

.socialIconBtn.socialWhatsApp{
  color: #168c48;
  background: linear-gradient(135deg, rgba(255,255,255,.96), rgba(37,211,102,.11));
}

@media (min-width: 981px){
  .heroOrderIntro{
    row-gap: 0;
  }
  .heroSocialDock{
    margin-top: -14px;
    margin-bottom: 20px;
  }
  .layoutPremium{
    margin-top: 0;
  }
}

@media (max-width: 980px){
  .heroSocialDock{
    width: min(100%, 320px);
    margin: -2px auto 4px;
    padding: 9px 12px;
    gap: 10px;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,246,250,.88));
    border-radius: 24px;
  }
  .socialIconBtn{
    width: 52px;
    height: 52px;
    font-size: 21px;
  }
}

@media (max-width: 560px){
  .heroPremium{
    padding-bottom: 8px;
  }
  .heroSocialDock{
    width: 100%;
    min-height: 66px;
    margin-top: -4px;
    margin-bottom: 2px;
    border-radius: 22px;
  }
  .socialIconBtn{
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}


/* ===== Index: ajuste final redes sociales v42 ===== */
.heroSocialDockTitle,
.socialDockLabel{
  font-family: var(--font-main, 'Nunito', system-ui, sans-serif);
}

.heroSocialDockTitle{
  display: none;
}

.socialDockLabel{
  display: none;
  color: var(--choco, #401102);
  font-size: 14px;
  font-weight: 950;
  letter-spacing: .01em;
  white-space: nowrap;
}

@media (min-width: 981px){
  .heroSocialDock{
    margin-top: 18px;
    margin-bottom: 4px;
    padding: 10px 16px;
    gap: 14px;
  }
  .heroPremium{
    padding-bottom: clamp(16px, 2vw, 24px);
  }
}

@media (max-width: 980px){
  .heroSocialDock{
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    justify-content: stretch;
    gap: 10px;
    padding: 16px;
    margin: 18px auto 14px;
    border-radius: 26px;
    border: 1px solid rgba(242,91,143,.16);
    background:
      radial-gradient(180px 110px at 98% 0%, rgba(242,91,143,.13), transparent 70%),
      radial-gradient(170px 120px at 0% 100%, rgba(246,186,96,.13), transparent 70%),
      linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,251,.88));
    box-shadow: 0 16px 36px rgba(64,17,2,.08);
    backdrop-filter: blur(12px);
  }

  .heroSocialDockTitle{
    display: block;
    margin: 0 0 2px;
    padding-left: 3px;
    color: rgba(64,17,2,.56);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  .socialIconBtn{
    width: 100%;
    height: 54px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 0 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.88);
  }

  .socialIconBtn i{
    width: 36px;
    height: 36px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    flex: 0 0 auto;
    font-size: 18px;
  }

  .socialDockLabel{
    display: inline-block;
  }

  .socialIconBtn.socialInstagram i{
    background: linear-gradient(135deg, rgba(242,91,143,.16), rgba(246,186,96,.16));
  }

  .socialIconBtn.socialTikTok i{
    background: rgba(64,17,2,.08);
  }

  .socialIconBtn.socialWhatsApp i{
    background: rgba(37,211,102,.13);
  }
}

@media (max-width: 560px){
  .heroPremium{
    padding-bottom: 10px;
  }

  .heroSocialDock{
    min-height: 0;
    margin-top: 16px;
    margin-bottom: 14px;
    padding: 15px;
    border-radius: 24px;
  }

  .socialIconBtn{
    min-height: 52px;
    height: 52px;
    padding: 0 14px;
  }

  .layoutPremium{
    margin-top: 0;
  }
}


/* ===== Index: refinamiento desktop redes sociales v43 ===== */
@media (min-width: 981px){
  .heroOrderIntro{
    row-gap: clamp(18px, 2vw, 28px);
    padding-bottom: clamp(22px, 2.4vw, 34px);
  }

  .heroSocialDock{
    margin-top: 0;
    margin-bottom: 0;
    transform: translateY(0);
    padding: 12px 18px;
    gap: 16px;
    border-color: rgba(242,91,143,.18);
    background: rgba(255,255,255,.82);
    box-shadow: 0 18px 34px rgba(64,17,2,.075);
  }

  .heroSocialDock::before{
    content: "";
    position: absolute;
    inset: -10px -18px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(242,91,143,.05), rgba(246,186,96,.05));
    z-index: -1;
    pointer-events: none;
  }

  .socialIconBtn{
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .layoutPremium{
    margin-top: clamp(10px, 1.3vw, 18px);
  }
}

/* ===== Index: pre-lanzamiento + combo inaugural v44 ===== */
body.launch-checking .page{
  visibility: hidden;
}
body.prelaunch-active{
  min-height: 100vh;
  overflow-x: hidden;
}
body.prelaunch-active .page{
  display: none !important;
}
.launchGate.hidden{ display:none !important; }
.launchGate{
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(22px, 4vw, 56px);
  background:
    radial-gradient(60rem 26rem at 8% 6%, rgba(242,91,143,.18), transparent 62%),
    radial-gradient(46rem 22rem at 90% 10%, rgba(246,186,96,.16), transparent 60%),
    linear-gradient(180deg, #fff8f2 0%, #fff1f6 48%, #fffaf6 100%);
}
.launchGateShell{
  width: min(100%, 760px);
}
.launchGateCard{
  position: relative;
  overflow: hidden;
  border-radius: clamp(26px, 4vw, 40px);
  padding: clamp(24px, 4vw, 44px);
  text-align: center;
  border: 1px solid rgba(64,17,2,.10);
  background:
    radial-gradient(24rem 16rem at 100% 0%, rgba(242,91,143,.12), transparent 65%),
    radial-gradient(20rem 14rem at 0% 100%, rgba(246,186,96,.14), transparent 70%),
    rgba(255,255,255,.88);
  box-shadow: 0 28px 70px rgba(64,17,2,.12);
  backdrop-filter: blur(12px);
}
.launchGateLogo{
  width: min(220px, 62vw);
  height: auto;
  margin: 0 auto 18px;
  display:block;
}
.launchGateKicker,
.promoKicker{
  color: rgba(64,17,2,.56);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.launchGate h1{
  font-family: var(--font-display, 'Baloo 2', system-ui, sans-serif);
  color: var(--choco, #401102);
  font-size: clamp(32px, 5vw, 56px);
  line-height: .96;
  margin: 8px auto 12px;
  max-width: 620px;
}
.launchGate p{
  max-width: 560px;
  margin: 0 auto 20px;
  color: rgba(64,17,2,.68);
  font-weight: 800;
  line-height: 1.45;
}
.launchCountdown,
.promoCountdown{
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 10px;
}
.launchCountdown{
  max-width: 520px;
  margin: 18px auto 22px;
}
.launchCountdown div,
.promoCountdown div{
  border-radius: 20px;
  border: 1px solid rgba(242,91,143,.14);
  background: rgba(255,255,255,.82);
  box-shadow: 0 12px 24px rgba(64,17,2,.06);
  padding: 12px 8px;
}
.launchCountdown strong,
.promoCountdown strong{
  display:block;
  font-family: var(--font-display, 'Baloo 2', system-ui, sans-serif);
  color: #401102;
  font-size: clamp(22px, 4vw, 34px);
  line-height: 1;
}
.launchCountdown span,
.promoCountdown span{
  display:block;
  margin-top: 4px;
  color: rgba(64,17,2,.58);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.launchSignupForm{
  display:grid;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto;
  text-align:left;
}
.launchSignupForm .label{
  margin-top: 4px;
}
.launchConsent{
  display: grid;
  grid-template-columns: auto minmax(0,1fr);
  gap: 10px;
  align-items: start;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,246,250,.76);
  border: 1px solid rgba(242,91,143,.14);
  color: rgba(64,17,2,.68);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.launchConsent input{
  accent-color: var(--pink, #f25b8f);
  transform: translateY(2px);
}
.launchSignupBtn,
.launchChannelBtn{
  width: 100%;
  justify-content:center;
  margin-top: 4px;
}

.launchSignupFormChannelOnly{
  max-width: 520px;
  text-align: center;
}
.launchSignupFormChannelOnly .launchChannelBtn{
  min-height: 58px;
  border-radius: 22px;
  gap: 10px;
  font-size: 16px;
  box-shadow: 0 18px 38px rgba(37, 211, 102, .16), 0 14px 30px rgba(64,17,2,.08);
}
.launchSignupFormChannelOnly .launchChannelBtn i{
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(37, 211, 102, .14);
  color: #128c4a;
  font-size: 18px;
}
.launchSignupFormChannelOnly .launchSignupStatus{
  margin-top: 6px;
  min-height: auto;
  line-height: 1.35;
  color: rgba(64,17,2,.62);
}

.launchSignupStatus{
  min-height: 20px;
  color: rgba(64,17,2,.72);
  font-size: 13px;
  font-weight: 900;
  text-align:center;
}
.launchGateFoot{
  margin-top: 16px;
  color: rgba(64,17,2,.56);
  font-size: 13px;
  font-weight: 850;
}
.inauguralPromoBanner{
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 14px 0 18px;
  padding: 18px;
  border-radius: 26px;
  border: 1px solid rgba(242,91,143,.16);
  background:
    radial-gradient(18rem 10rem at 100% 0%, rgba(242,91,143,.14), transparent 68%),
    linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,247,239,.86));
  box-shadow: 0 18px 36px rgba(64,17,2,.07);
}
.inauguralPromoBanner.hidden{ display:none !important; }
.promoCopy{
  display:grid;
  gap: 3px;
}
.promoCopy strong{
  font-family: var(--font-display, 'Baloo 2', system-ui, sans-serif);
  color:#401102;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.02;
}
.promoCopy small{
  color: rgba(64,17,2,.66);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.38;
}
.promoCountdown{
  min-width: min(360px, 42vw);
}
.promoCountdown div{
  padding: 10px 8px;
  min-width: 70px;
  text-align:center;
}
.productCard.is-inaugural-combo{
  border-color: rgba(242,91,143,.26);
  background:
    radial-gradient(18rem 10rem at 100% 0%, rgba(242,91,143,.14), transparent 68%),
    rgba(255,255,255,.96);
}
.productCard.is-inaugural-combo .productEyebrow{
  color: #a43a5f;
  background: linear-gradient(90deg, rgba(242,91,143,.13), rgba(246,186,96,.13));
}
.productCard.is-disabled-promo{
  opacity: .78;
}
.productCard.is-disabled-promo .productImg{
  filter: saturate(.85) contrast(.96);
}
.promoLockedNote,
.promoStockNote{
  width: 100%;
  text-align:center;
  border-radius: 16px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
}
.promoLockedNote{
  background: rgba(255,246,250,.88);
  border: 1px dashed rgba(242,91,143,.25);
  color: rgba(64,17,2,.62);
}
.promoStockNote{
  margin-top: 8px;
  background: rgba(255,248,237,.86);
  color: rgba(64,17,2,.62);
}
@media (max-width: 760px){
  .launchGate{
    padding: 18px;
  }
  .launchGateCard{
    padding: 24px 18px;
  }
  .launchCountdown,
  .promoCountdown{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
  .inauguralPromoBanner{
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 16px;
  }
  .promoCountdown{
    width: 100%;
    min-width: 0;
  }
}

/* Acceso interno privado antes de inauguración */
.privateOrderBanner{
  max-width:1240px;
  margin:14px auto 0;
  padding:12px 16px;
  border:1px solid rgba(242,91,143,.28);
  border-radius:22px;
  background:linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,239,245,.92));
  box-shadow:0 14px 34px rgba(64,17,2,.08);
  color:#401102;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
}
.privateOrderBanner.hidden{display:none!important;}
.privateOrderBanner strong{
  display:block;
  font-family:var(--font-display, inherit);
  font-size:17px;
  line-height:1.05;
}
.privateOrderBanner span{
  display:block;
  margin-top:4px;
  color:rgba(64,17,2,.68);
  font-size:13px;
  font-weight:800;
}
.privateOrderExit{
  border:1px solid rgba(242,91,143,.26);
  border-radius:999px;
  background:#fff;
  color:#401102;
  font-weight:900;
  padding:9px 14px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(64,17,2,.08);
}
.privateOrderExit:hover{transform:translateY(-1px);}
body.private-order-access .heroEyebrow::after{
  content:" · modo interno";
  color:#f25b8f;
}
@media (max-width:720px){
  .privateOrderBanner{
    margin:10px 14px 0;
    align-items:flex-start;
    border-radius:20px;
    padding:12px;
  }
  .privateOrderBanner strong{font-size:15px;}
  .privateOrderBanner span{font-size:12px;}
  .privateOrderExit{padding:8px 12px;}
}


/* ===== INDEX v17: tutoriales integrados, ligeros y consistentes ===== */
.tutorialHelper{
  display:grid;
  gap:3px;
  margin-top:10px;
  padding:10px 12px;
  border:1px solid rgba(242,91,143,.14);
  border-radius:14px;
  background:rgba(255,255,255,.72);
  color:rgba(64,17,2,.68);
  line-height:1.4;
}
.tutorialHelper strong{
  color:var(--choco);
  font-size:13px;
  font-weight:950;
}
.tutorialHelper span{
  font-size:12.5px;
  font-weight:700;
}
.tutorialAction,
.pickupActions{
  margin-top:8px;
}
.tutorialBtn,
.pickupActions .tutorialBtn{
  width:100%;
  min-height:46px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  background:linear-gradient(180deg, rgba(242,91,143,.18), rgba(242,91,143,.28));
  border:1px solid rgba(242,91,143,.24);
  color:var(--choco);
  font-weight:950;
  box-shadow:0 10px 22px rgba(64,17,2,.08);
}
.tutorialBtn:hover{
  transform:translateY(-1px);
  box-shadow:0 12px 26px rgba(64,17,2,.11);
}
.tutorialBtn:active{
  transform:translateY(0);
}
body.tutorialModalOpen{
  overflow:hidden;
}
.tutorialModalOverlay{
  z-index:70;
  background:rgba(64,17,2,.44);
  backdrop-filter:blur(8px);
}
.tutorialModal{
  width:min(520px, 94vw);
  max-height:94vh;
  overflow:auto;
}
.tutorialModalHeader{
  position:sticky;
  top:0;
  z-index:2;
  background:rgba(255,253,252,.96);
  backdrop-filter:blur(10px);
}
.tutorialModalKicker{
  margin-bottom:2px;
  color:rgba(64,17,2,.56);
  font-size:11px;
  font-weight:950;
  letter-spacing:.09em;
  text-transform:uppercase;
}
.tutorialModalBody{
  gap:10px;
}
.tutorialModalText{
  margin:0;
  color:rgba(64,17,2,.70);
  font-size:13.5px;
  line-height:1.48;
  font-weight:700;
}
.tutorialVideoShell{
  width:min(100%, 360px);
  margin:2px auto 0;
  aspect-ratio:9 / 16;
  overflow:hidden;
  border-radius:20px;
  background:#1d0a05;
  border:1px solid rgba(64,17,2,.12);
  box-shadow:0 18px 44px rgba(64,17,2,.16);
}
.tutorialVideo{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  background:#1d0a05;
}
.tutorialModalHint{
  text-align:center;
  color:rgba(64,17,2,.58);
  font-size:12px;
  line-height:1.4;
  font-weight:700;
}
@media (max-width:720px){
  .tutorialHelper{
    padding:9px 10px;
  }
  .tutorialHelper strong{
    font-size:12.5px;
  }
  .tutorialHelper span{
    font-size:12px;
  }
  .tutorialModalOverlay{
    padding:10px;
  }
  .tutorialModal{
    width:min(100%, 430px);
    max-height:96vh;
    border-radius:20px;
  }
  .tutorialVideoShell{
    width:min(100%, 330px);
    max-height:68vh;
  }
}
