/* src/styles/carta.css */
/* Asistente "crea tu carta". Buena parte del contenido lo pinta carta.js en
   tiempo de ejecucion, asi que los estilos van aqui: Instatic solo emite las
   clases del CSS del sitio que algun nodo del arbol usa. */

/* SUSTITUIDO por carta2.css (tarjeta bloqueada). Neutralizado: se le pone un
   ancestro que no existe para que ninguna regla llegue a aplicar. */
.w-carta-v1-desactivado .w-wiz {
  margin-top: 26px;
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  background: var(--w-surface);
  box-shadow: 0 40px 80px -48px rgba(0,0,0,.34);
  padding: 18px 16px 22px;
  overflow: hidden;
}

/* Barra de pasos ------------------------------------------------------- */

.w-wsteps {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.w-wsteps::-webkit-scrollbar { display: none; }

.w-wchip {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  color: var(--text-body);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.w-wchip i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
.w-wchip[data-on="1"] { background: var(--primary); color: #fff; }
.w-wchip[data-on="1"] i { background: rgba(255,255,255,.3); }
.w-wchip[data-done="1"] { background: rgba(255,60,37,.12); color: var(--primary); }
.w-wchip[data-done="1"] i { background: var(--primary); }

/* Pasos ---------------------------------------------------------------- */

.w-wstep { display: none; }
.w-wstep[data-on="1"] { display: block; }

.w-wdrop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 34px 18px;
  border: 2px dashed rgba(255,60,37,.35);
  border-radius: 18px;
  background: rgba(255,60,37,.03);
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.w-wdrop[data-over="1"] { border-color: var(--primary); background: rgba(255,60,37,.09); }

.w-wdrop-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,60,37,.1);
  color: var(--primary);
}
.w-wdrop-ico svg {
  width: 24px; height: 24px;
  stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.w-wdrop b {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--text-title);
  letter-spacing: -.01em;
}
.w-wdrop span { font-size: 13.5px; color: var(--text-body); opacity: .7; }

.w-wfile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: var(--w-page);
  font-size: 14px;
  color: var(--text-title);
}
.w-wfile b { font-family: var(--font-heading); font-weight: 800; }
.w-wfile em { font-style: normal; opacity: .6; margin-left: auto; font-size: 12.5px; }

.w-wrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.w-wbtn {
  flex: 1 1 auto;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}
.w-wbtn:hover { background: var(--primary-d-1, #E02E19); }
.w-wbtn[disabled] { opacity: .4; cursor: not-allowed; }

.w-wghost {
  flex: 1 1 auto;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: transparent;
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.w-wghost:hover { border-color: var(--primary); color: var(--primary); }

.w-wfld { display: flex; flex-direction: column; margin-top: 14px; }
.w-wfld label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 6px;
}
.w-wfld input, .w-wfld select {
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: var(--w-page);
  color: var(--text-title);
  font-family: var(--font-body);
  font-size: 16px;
}
.w-wfld input:focus, .w-wfld select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,60,37,.14);
}

.w-wstyles { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }

.w-wstyle {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  background: var(--w-page);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background-color .2s ease;
}
.w-wstyle[data-on="1"] { border-color: var(--primary); background: rgba(255,60,37,.05); }
.w-wstyle-sw { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 11px; }
.w-wstyle b {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-title);
}
.w-wstyle span { display: block; font-size: 13px; color: var(--text-body); opacity: .7; }

/* Logo del negocio ------------------------------------------------------- */

.w-wlogo-lbl {
  display: block;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-title);
}
.w-wlogo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.w-wlogo-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 999px;
  background: var(--primary);
  overflow: hidden;
}
.w-wlogo-prev img { width: 100%; height: 100%; object-fit: cover; }
.w-wlogo-prev .w-wp-hand { width: 24px; height: 24px; object-fit: contain; }
.w-wlogo .w-wghost { flex: 0 0 auto; min-height: 46px; }
.w-wlogo-t { flex: 1 1 160px; font-size: 12.5px; line-height: 1.4; color: var(--text-body); opacity: .7; }

/* Candado sobre la carta ------------------------------------------------- */

.w-wp-locked {
  filter: blur(4.5px);
  pointer-events: none;
  user-select: none;
}

.w-wp-gate {
  position: absolute;
  left: 0; right: 0; bottom: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 5px;
  padding: 26px 18px 14px;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, #fff 26%, #fff 100%);
  z-index: 4;
}
.w-wp-lock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px; height: 34px; flex: 0 0 34px;
  border-radius: 999px;
  background: rgba(255,60,37,.12);
}
.w-wp-lock svg {
  width: 19px; height: 19px;
  stroke: var(--primary); stroke-width: 1.9;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.w-wp-gate b {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #111113;
}
.w-wp-gate > span:not(.w-wp-lock) {
  font-size: 11.5px;
  line-height: 1.4;
  color: rgba(0,0,0,.6);
  max-width: 24ch;
}
.w-wp-gate-btn {
  width: 100%;
  margin-top: 6px;
  min-height: 40px;
  border: 0;
  border-radius: 11px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 900;
  cursor: pointer;
}
.w-wp-gate-btn:hover { background: var(--primary-d-1, #E02E19); }

/* Con el candado puesto, el boton flotante del pedido sobra. */
.w-wp-cta { display: none; }

/* Maquetando ------------------------------------------------------------ */

.w-wload { padding: 22px 4px 6px; }
.w-wload .w-wnote { margin-top: 20px; text-align: left; }
.w-wbar {
  height: 8px;
  border-radius: 999px;
  background: rgba(0,0,0,.07);
  overflow: hidden;
}
.w-wbar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--primary);
  transition: width .45s ease;
}
.w-wtasks { margin-top: 18px; display: flex; flex-direction: column; gap: 11px; }
.w-wtask {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  opacity: .4;
  transition: opacity .3s ease, color .3s ease;
}
.w-wtask[data-on="1"] { opacity: 1; color: var(--text-title); font-weight: 600; }
.w-wtask s {
  width: 18px; height: 18px; flex: 0 0 18px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.15);
  text-decoration: none;
}
.w-wtask[data-on="1"] s { border-color: var(--primary); background: var(--primary); }

/* Resultado ------------------------------------------------------------- */

.w-wres { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 6px; }

/* Marco de iPhone: bisel fino, esquinas muy redondeadas, isla dinamica y
   barra de estado. Sin eso el marco parecia un Android generico de 2015. */
.w-wphone {
  position: relative;
  width: 100%;
  max-width: 302px;
  border-radius: 44px;
  border: 9px solid #0b0b0d;
  background: #0b0b0d;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px #3a3a3f,
    0 34px 70px -28px rgba(0,0,0,.55),
    0 6px 18px -8px rgba(0,0,0,.35);
}
.w-wphone:before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  transform: translateX(-50%);
  width: 78px;
  height: 21px;
  border-radius: 999px;
  background: #0b0b0d;
  z-index: 3;
}

.w-wp-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 20px 3px;
  background: #111113;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.w-wp-status i { font-style: normal; display: flex; align-items: center; gap: 4px; }
.w-wp-status svg { width: 15px; height: 11px; fill: #fff; }
.w-wphone-top {
  padding: 16px 16px 12px;
  background: var(--primary);
  color: #fff;
}
.w-wphone-top b {
  display: block;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
}
.w-wphone-top span { font-size: 12px; opacity: .85; }
.w-wphone-body { height: 320px; overflow-y: auto; padding: 4px 14px 16px; }

.w-wcat {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}
.w-wdish {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.w-wdish-t { flex: 1 1 auto; min-width: 0; }
.w-wdish-t b {
  display: block;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: var(--text-title);
}
.w-wdish-t span { display: block; font-size: 12px; color: var(--text-body); opacity: .7; line-height: 1.35; }
.w-wdish-p {
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 900;
  color: var(--text-title);
  white-space: nowrap;
}

.w-wnote {
  width: 100%;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255,60,37,.07);
  border: 1px solid rgba(255,60,37,.2);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-body);
  text-align: center;
}
.w-wnote b { color: var(--primary); font-weight: 800; }

/* Modal de cuenta -------------------------------------------------------- */

.w-wmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  padding: 0;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(4px);
}
.w-wmodal[data-on="1"] { display: flex; }

.w-wmodal-box {
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 26px 26px 0 0;
  background: var(--w-surface);
  padding: 26px 22px 30px;
  box-shadow: 0 -20px 60px -20px rgba(0,0,0,.5);
}
.w-wmodal-kick {
  display: block;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}
.w-wmodal-box h3 {
  margin: 9px 0 0;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text-title);
}
.w-wmodal-box p { margin: 11px 0 0; font-size: 15px; line-height: 1.5; color: var(--text-body); }
.w-wlist { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 9px; }
.w-wlist li { display: flex; gap: 9px; font-size: 14.5px; color: var(--text-title); }
.w-wlist svg {
  width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px;
  stroke: var(--primary); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.w-wmodal-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: 20px;
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 800;
  text-decoration: none;
}
.w-wmodal-cta:hover { background: var(--primary-d-1, #E02E19); }
.w-wmodal-x {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--text-body);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}
.w-wmodal-legal { margin-top: 14px; font-size: 12px; line-height: 1.45; opacity: .6; }

@media (min-width: 760px) {
  .w-wiz { padding: 26px 26px 30px; }
  .w-wstyles { grid-template-columns: 1fr 1fr 1fr; }
  .w-wstyle { flex-direction: column; align-items: flex-start; gap: 9px; }
  .w-wrow { justify-content: flex-start; }
  .w-wbtn, .w-wghost { flex: 0 0 auto; }
  .w-wmodal { align-items: center; padding: 24px; }
  .w-wmodal-box { border-radius: 26px; }
}

/* Previsualizacion fiel al menu real de go.waitry.net ------------------- */

.w-wphone { position: relative; }

.w-wp-bar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 13px;
  background: #111113;
  color: #fff;
}
.w-wp-bar svg { width: 19px; height: 19px; flex: 0 0 19px; stroke: #fff; stroke-width: 2; stroke-linecap: round; fill: none; }
.w-wp-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px; flex: 0 0 26px;
  border-radius: 999px;
  background: var(--primary);
  overflow: hidden;
}
.w-wp-mark-img { background: #fff; }
.w-wp-logo { width: 100%; height: 100%; object-fit: cover; filter: none; }
.w-wp-hand {
  width: 13px;
  height: 13px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.w-wp-bar b {
  flex: 1 1 auto;
  min-width: 0;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.w-wp-flag { font-size: 14px; line-height: 1; }

.w-wp-tabs {
  display: flex;
  gap: 18px;
  padding: 0 14px;
  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,.08);
  overflow-x: auto;
  scrollbar-width: none;
}
.w-wp-tabs::-webkit-scrollbar { display: none; }
.w-wp-tab {
  flex: 0 0 auto;
  padding: 11px 0 9px;
  border-bottom: 3px solid transparent;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
  white-space: nowrap;
}
.w-wp-tab[data-on="1"] { color: #111113; font-weight: 900; border-bottom-color: var(--primary); }

/* Portada por defecto de Waitry, siempre la misma, para que el local que aun
   no tiene foto propia no se quede con un rectangulo gris. */
.w-wp-hero {
  position: relative;
  height: 88px;
  background-color: #241a16;
  background-image:
    linear-gradient(180deg, rgba(20,12,9,.35) 0%, rgba(20,12,9,.72) 100%),
    url("/uploads/K0ML_rb9BsHF9xw9My8rE-resumen-desenfoque-defocused-restaurante-cafeteria-interior-cafe.jpg");
  background-size: cover;
  background-position: center;
}
.w-wp-hero:after {
  content: "";
  position: absolute;
  left: 14px;
  bottom: 12px;
  width: 62px;
  height: 20px;
  background: url("/uploads/L1xkRisn4Bs6He_E5iqgN-Waitry_Logo_Blanco.svg") left center / contain no-repeat;
  opacity: .9;
}

.w-wp-body {
  height: 300px;
  overflow-y: auto;
  padding: 0 14px 70px;
  background: #fff;
}

.w-wp-cat {
  margin: 14px 0 8px;
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #111113;
}

.w-wp-dish {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
}
.w-wp-dt { flex: 1 1 auto; min-width: 0; }
.w-wp-dt b {
  display: block;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  color: #111113;
  letter-spacing: -.01em;
}
.w-wp-dt span {
  display: block;
  margin-top: 2px;
  font-size: 11.5px;
  line-height: 1.35;
  color: rgba(0,0,0,.5);
}
.w-wp-dt em {
  display: block;
  margin-top: 6px;
  font-family: var(--font-heading);
  font-size: 13.5px;
  font-weight: 800;
  font-style: normal;
  color: #111113;
}

.w-wp-thumb {
  position: relative;
  width: 70px; height: 70px; flex: 0 0 70px;
  border-radius: 12px;
  background: #efece7;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.w-wp-thumb svg { width: 20px; height: 20px; display: block; stroke: rgba(0,0,0,.22); stroke-width: 1.7; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.w-wp-star {
  position: absolute;
  top: 4px; right: 4px;
  font-size: 11px;
  line-height: 1;
}
.w-wp-pts {
  position: absolute;
  left: 4px; right: 4px; bottom: 4px;
  padding: 2px 0;
  border-radius: 5px;
  background: #1f8a4c;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 8.5px;
  font-weight: 800;
  text-align: center;
}

.w-wp-cta {
  position: absolute;
  left: 12px; right: 12px; bottom: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 42px;
  border-radius: 12px;
  background: #111113;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
}
.w-wp-cta svg { width: 15px; height: 15px; stroke: #fff; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }

.w-wp-nav {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  background: #111113;
  padding: 7px 0 9px;
}
.w-wp-nav span {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 9.5px;
  font-weight: 700;
  position: relative;
}
.w-wp-nav svg { width: 17px; height: 17px; stroke: #fff; stroke-width: 1.8; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.w-wp-badge {
  position: absolute;
  top: -4px;
  margin-left: 20px;
  width: 15px; height: 15px;
  border-radius: 999px;
  background: #fff;
  color: #111113;
  font-size: 9px;
  font-weight: 900;
  line-height: 15px;
  text-align: center;
}

@media (min-width: 760px) {
  .w-wphone { max-width: 360px; border-radius: 50px; border-width: 10px; }
  .w-wphone:before { width: 92px; height: 25px; top: 8px; }
  .w-wp-body { height: 400px; }
  .w-wp-hero { height: 112px; }
  .w-wp-thumb { width: 82px; height: 82px; flex-basis: 82px; }
  .w-wp-dt b { font-size: 15px; }
  .w-wp-dt span { font-size: 12.5px; }
  .w-wp-dt em { font-size: 15px; }
  .w-wp-cat { font-size: 19px; }
  .w-wp-bar b { font-size: 15.5px; }
  .w-wp-tab { font-size: 14px; }
  .w-wp-gate { padding: 32px 24px 18px; }
  .w-wp-gate b { font-size: 17px; }
  .w-wp-gate > span:not(.w-wp-lock) { font-size: 12.5px; max-width: 28ch; }
  .w-wp-gate-btn { min-height: 46px; font-size: 15px; }
}

@media (prefers-reduced-motion: reduce) {
  .w-wbar i, .w-wtask, .w-wchip { transition: none; }
}


/* src/styles/carta2.css */
/* Asistente "crea tu carta", version tarjeta bloqueada (sin marco de movil).
   Casi todo lo pinta carta2.js en tiempo de ejecucion, asi que los estilos
   viven aqui: Instatic solo emite las clases del CSS del sitio que algun nodo
   del arbol usa. */

.w-wiz {
  margin-top: 26px;
  border: 1px solid var(--border-primary);
  border-radius: 24px;
  background: var(--w-surface);
  box-shadow: 0 40px 80px -48px rgba(0,0,0,.34);
  padding: 18px 16px 22px;
  overflow: hidden;
}

/* Barra de pasos ------------------------------------------------------- */

.w-wsteps {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 14px;
  margin-bottom: 4px;
}
.w-wsteps::-webkit-scrollbar { display: none; }

.w-wchip {
  display: flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0,0,0,.04);
  color: var(--text-body);
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: background-color .2s ease, color .2s ease;
}
.w-wchip i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,.12);
  color: #fff;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
}
.w-wchip[data-on="1"] { background: var(--primary); color: #fff; }
.w-wchip[data-on="1"] i { background: rgba(255,255,255,.3); }
.w-wchip[data-done="1"] { background: rgba(255,60,37,.12); color: var(--primary); }
.w-wchip[data-done="1"] i { background: var(--primary); }

/* Pasos ---------------------------------------------------------------- */

.w-wstep { display: none; }
.w-wstep[data-on="1"] { display: block; }

.w-wdrop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 34px 18px;
  border: 2px dashed rgba(255,60,37,.35);
  border-radius: 18px;
  background: rgba(255,60,37,.03);
  text-align: center;
  cursor: pointer;
  transition: background-color .2s ease, border-color .2s ease;
}
.w-wdrop[data-over="1"] { border-color: var(--primary); background: rgba(255,60,37,.09); }

.w-wdrop-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(255,60,37,.1);
  color: var(--primary);
}
.w-wdrop-ico svg {
  width: 24px; height: 24px;
  stroke: currentColor; stroke-width: 1.8;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.w-wdrop b {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 900;
  color: var(--text-title);
  letter-spacing: -.01em;
}
.w-wdrop span { font-size: 13.5px; color: var(--text-body); opacity: .7; }

.w-wfile {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: var(--w-page);
  font-size: 14px;
  color: var(--text-title);
}
.w-wfile b { font-family: var(--font-heading); font-weight: 800; }
.w-wfile em { font-style: normal; opacity: .6; margin-left: auto; font-size: 12.5px; }

.w-wrow { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.w-wbtn {
  flex: 1 1 auto;
  min-height: 52px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, opacity .2s ease;
}
.w-wbtn:hover { background: var(--primary-d-1, #E02E19); }
.w-wbtn[disabled] { opacity: .4; cursor: not-allowed; }

.w-wghost {
  flex: 1 1 auto;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: transparent;
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.w-wghost:hover { border-color: var(--primary); color: var(--primary); }

.w-wfld { display: flex; flex-direction: column; margin-top: 14px; }
.w-wfld label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--text-title);
  margin-bottom: 6px;
}
.w-wfld em { font-style: normal; font-weight: 600; opacity: .55; }
.w-wfld input, .w-wfld select {
  height: 52px;
  padding: 0 15px;
  border: 1px solid var(--border-primary);
  border-radius: 14px;
  background: var(--w-page);
  color: var(--text-title);
  font-family: var(--font-body);
  font-size: 16px;
}
.w-wfld input:focus, .w-wfld select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255,60,37,.14);
}

.w-wstyles { display: grid; grid-template-columns: 1fr; gap: 10px; margin-top: 14px; }

.w-wstyle {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 15px;
  border: 1px solid var(--border-primary);
  border-radius: 16px;
  background: var(--w-page);
  cursor: pointer;
  text-align: left;
  transition: border-color .2s ease, background-color .2s ease;
}
.w-wstyle[data-on="1"] { border-color: var(--primary); background: rgba(255,60,37,.05); }
.w-wstyle-sw { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 11px; }
.w-wstyle b {
  display: block;
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-title);
}
.w-wstyle span { display: block; font-size: 13px; color: var(--text-body); opacity: .7; }

/* Logo opcional --------------------------------------------------------- */

.w-wlogo { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.w-wlogo-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px; flex: 0 0 52px;
  border-radius: 999px;
  background: var(--primary);
  overflow: hidden;
}
.w-wlogo-prev img { width: 100%; height: 100%; object-fit: cover; }
.w-wlogo-prev .w-wp-hand { width: 24px; height: 24px; object-fit: contain; filter: brightness(0) invert(1); }
.w-wlogo .w-wghost { flex: 0 0 auto; min-height: 46px; }
.w-wlogo-t { flex: 1 1 170px; font-size: 12.5px; line-height: 1.4; color: var(--text-body); opacity: .7; }

/* Maquetando ------------------------------------------------------------ */

.w-wload { padding: 18px 4px 6px; }

.w-wspin { display: flex; align-items: center; gap: 13px; margin-bottom: 18px; }
.w-wspin i {
  width: 30px; height: 30px; flex: 0 0 30px;
  border-radius: 999px;
  border: 3px solid rgba(255,60,37,.18);
  border-top-color: var(--primary);
  animation: w-wspin-run .85s linear infinite;
}
.w-wspin b {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: var(--text-title);
}
@keyframes w-wspin-run { to { transform: rotate(360deg); } }

.w-wbar { height: 8px; border-radius: 999px; background: rgba(0,0,0,.07); overflow: hidden; }
.w-wbar i {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--primary);
  transition: width .4s ease;
}
.w-wpct {
  display: block;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 12.5px;
  font-weight: 800;
  color: var(--primary);
}
.w-wtasks { margin-top: 16px; display: flex; flex-direction: column; gap: 11px; }
.w-wtask {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--text-body);
  opacity: .4;
  transition: opacity .3s ease, color .3s ease;
}
.w-wtask[data-on="1"] { opacity: 1; color: var(--text-title); font-weight: 600; }
.w-wtask s {
  width: 18px; height: 18px; flex: 0 0 18px;
  border-radius: 999px;
  border: 2px solid rgba(0,0,0,.15);
  text-decoration: none;
}
.w-wtask[data-on="1"] s { border-color: var(--primary); background: var(--primary); }

.w-wnote {
  width: 100%;
  margin-top: 20px;
  padding: 12px 14px;
  border-radius: 13px;
  background: rgba(255,60,37,.07);
  border: 1px solid rgba(255,60,37,.2);
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-body);
}
.w-wnote b { color: var(--primary); font-weight: 800; }

/* Resultado: tarjeta bloqueada ------------------------------------------- */

.w-wcard {
  position: relative;
  border-radius: 22px;
  border: 1px solid var(--border-primary);
  background: var(--w-surface);
  box-shadow: 0 26px 60px -34px rgba(0,0,0,.4);
  overflow: hidden;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Al fondo, desenfocado: el movil con la carta y el QR al lado. Es lo que
   hace que la tarjeta parezca una carta de verdad a medio entregar. */
.w-wcard-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: blur(5px);
  opacity: 1;
  pointer-events: none;
  user-select: none;
}
.w-wmock {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.w-wqr {
  width: 116px; height: 116px; flex: 0 0 116px;
  padding: 8px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 30px -12px rgba(0,0,0,.55);
}
.w-wqr svg { width: 100%; height: 100%; display: block; }

.w-wm-phone {
  width: 152px; flex: 0 0 152px;
  border-radius: 22px;
  border: 5px solid #0b0b0d;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 18px 40px -18px rgba(0,0,0,.5);
}
.w-wm-bar {
  display: flex; align-items: center; gap: 5px;
  padding: 7px 8px;
  background: #111113;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 8px; font-weight: 900;
}
.w-wm-mark {
  display: flex; align-items: center; justify-content: center;
  width: 14px; height: 14px; flex: 0 0 14px;
  border-radius: 999px; background: var(--primary); overflow: hidden;
}
.w-wm-mark img { width: 8px; height: 8px; object-fit: contain; filter: brightness(0) invert(1); }
.w-wm-mark.w-wm-mark-img { background: #fff; }
.w-wm-mark.w-wm-mark-img img { width: 100%; height: 100%; object-fit: cover; filter: none; }
.w-wm-bar u { flex: 1 1 auto; text-decoration: none; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }

.w-wm-tabs {
  display: flex; gap: 8px;
  padding: 5px 8px 0;
  border-bottom: 1px solid rgba(0,0,0,.08);
  font-family: var(--font-heading);
  font-size: 7.5px; font-weight: 700;
  color: rgba(0,0,0,.5);
}
.w-wm-tabs b { color: #111113; font-weight: 900; border-bottom: 2px solid var(--primary); padding-bottom: 3px; }
.w-wm-tabs span { padding-bottom: 3px; }

.w-wm-hero {
  height: 42px;
  background-color: #241a16;
  background-image:
    linear-gradient(180deg, rgba(20,12,9,.3), rgba(20,12,9,.7)),
    url("/uploads/K0ML_rb9BsHF9xw9My8rE-resumen-desenfoque-defocused-restaurante-cafeteria-interior-cafe.jpg");
  background-size: cover;
  background-position: center;
}

.w-wm-body { padding: 4px 8px 6px; }
.w-wm-cat {
  margin: 5px 0 2px;
  font-family: var(--font-heading);
  font-size: 9px; font-weight: 900;
  color: #111113;
}
.w-wm-dish { display: flex; gap: 6px; align-items: flex-start; padding: 4px 0; }
.w-wm-dt { flex: 1 1 auto; min-width: 0; }
.w-wm-dt b { display: block; font-family: var(--font-heading); font-size: 7.5px; font-weight: 800; color: #111113; }
.w-wm-dt span { display: block; font-size: 6.5px; line-height: 1.3; color: rgba(0,0,0,.5); }
.w-wm-dt em { display: block; margin-top: 2px; font-family: var(--font-heading); font-size: 7.5px; font-weight: 800; font-style: normal; color: #111113; }
.w-wm-th { width: 27px; height: 27px; flex: 0 0 27px; border-radius: 6px; background: #efece7; }
.w-wm-nav { height: 15px; background: #111113; }

/* Velo entre el fondo desenfocado y el texto: sin el, el candado se pierde
   encima del QR. */
.w-wcard-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(44% 36% at 50% 52%,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.7) 62%,
    rgba(255,255,255,.1) 100%);
}

.w-wcard-front {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 26px 20px;
}
.w-wlock {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px; height: 62px;
  border-radius: 20px;
  background: rgba(255,60,37,.14);
  box-shadow: 0 0 0 6px rgba(255,255,255,.85);
  margin-bottom: 4px;
}
.w-wlock svg {
  width: 28px; height: 28px;
  stroke: var(--primary); stroke-width: 1.9;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* El candado es el boton: es lo primero que la gente intenta tocar. */
.w-wlock-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  margin-top: 14px;
  padding: 0 22px;
  border: 0;
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 15.5px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 14px 30px -12px rgba(255,60,37,.75);
  transition: background-color .2s ease, transform .2s ease;
}
.w-wlock-btn:hover { background: var(--primary-d-1, #E02E19); transform: translateY(-1px); }
.w-wlock-btn svg {
  width: 18px; height: 18px; flex: 0 0 18px;
  stroke: #fff; stroke-width: 2;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}

/* Aviso de carta incompleta ---------------------------------------------- */

.w-wpop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: flex-end;
  justify-content: center;
  background: rgba(10,10,10,.55);
  backdrop-filter: blur(4px);
}
.w-wpop[data-on="1"] { display: flex; }
.w-wpop-box {
  width: 100%;
  max-width: 460px;
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 26px 26px 0 0;
  background: var(--w-surface);
  padding: 26px 22px 30px;
  box-shadow: 0 -20px 60px -20px rgba(0,0,0,.5);
}
.w-wpop-kick {
  display: block;
  font-family: var(--font-heading);
  font-size: 11.5px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--primary);
}
.w-wpop-box h3 {
  margin: 9px 0 0;
  font-family: var(--font-heading);
  font-size: 25px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.03em;
  color: var(--text-title);
}
.w-wpop-box p { margin: 11px 0 0; font-size: 15px; line-height: 1.5; color: var(--text-body); }
.w-wpop-x {
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  border: 0;
  background: transparent;
  color: var(--text-body);
  font-size: 14px;
  cursor: pointer;
  text-decoration: underline;
}
@media (min-width: 760px) {
  .w-wpop { align-items: center; padding: 24px; }
  .w-wpop-box { border-radius: 26px; }
}
.w-wcard-front b {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.12;
  color: var(--text-title);
}
.w-wcard-front > span {
  font-size: 15px;
  color: var(--text-body);
  opacity: .72;
}
.w-wmeta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 7px 14px;
  margin-top: 10px;
  font-size: 13px;
  color: var(--text-body);
  opacity: .85;
}
.w-wmeta span { display: flex; align-items: center; gap: 6px; }
.w-wmeta svg {
  width: 15px; height: 15px;
  stroke: currentColor; stroke-width: 1.8;
  fill: none; stroke-linecap: round; stroke-linejoin: round;
}
.w-wmeta .w-wok { color: #1f8a4c; }

/* Resultado: tarjeta de desbloqueo ---------------------------------------- */

.w-wunlock {
  margin-top: 14px;
  padding: 26px 20px 24px;
  border-radius: 22px;
  border: 1px solid var(--border-primary);
  background: var(--w-surface);
  text-align: center;
  box-shadow: 0 26px 60px -40px rgba(0,0,0,.34);
}
.w-wunlock .w-wlock { margin: 0 auto 10px; }
.w-wunlock b {
  display: block;
  font-family: var(--font-heading);
  font-size: 21px;
  font-weight: 900;
  line-height: 1.14;
  letter-spacing: -.03em;
  color: var(--text-title);
  max-width: 22ch;
  margin: 0 auto;
}
.w-wunlock p {
  margin: 11px auto 0;
  max-width: 40ch;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-body);
}
.w-wlist { margin: 16px auto 0; padding: 0; list-style: none; display: inline-flex; flex-direction: column; gap: 9px; text-align: left; }
.w-wlist li { display: flex; gap: 9px; font-size: 14.5px; color: var(--text-title); }
.w-wlist svg {
  width: 17px; height: 17px; flex: 0 0 17px; margin-top: 2px;
  stroke: var(--primary); stroke-width: 2.4;
  stroke-linecap: round; stroke-linejoin: round; fill: none;
}
.w-wcta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 58px;
  margin-top: 20px;
  border-radius: 15px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16.5px;
  font-weight: 900;
  text-decoration: none;
}
.w-wcta:hover { background: var(--primary-d-1, #E02E19); }
.w-wlegal { margin-top: 14px; font-size: 12px; line-height: 1.45; opacity: .6; }

@media (min-width: 760px) {
  .w-wiz { padding: 26px 26px 30px; }
  .w-wstyles { grid-template-columns: 1fr 1fr 1fr; }
  .w-wstyle { flex-direction: column; align-items: flex-start; gap: 9px; }
  .w-wbtn, .w-wghost { flex: 0 0 auto; }
  .w-wcard { min-height: 470px; }
  .w-wcard-front b { font-size: 27px; }
  .w-wqr { width: 148px; height: 148px; flex-basis: 148px; }
  .w-wm-phone { width: 196px; flex-basis: 196px; }
  .w-wmock { gap: 24px; }
  .w-wunlock b { font-size: 25px; }
  .w-wcta { width: auto; min-width: 280px; margin-left: auto; margin-right: auto; padding: 0 30px; }
}

@media (prefers-reduced-motion: reduce) {
  .w-wbar i, .w-wtask, .w-wchip { transition: none; }
  .w-wspin i { animation: none; }
}


/* src/styles/iconoir.css */
@import url("https://cdn.jsdelivr.net/npm/iconoir/css/iconoir.css");


/* src/styles/mobnav.css */
/* Menu movil de dos niveles. Las clases las crea mobnav.js en tiempo de
   ejecucion, asi que estas reglas NO pueden vivir en el CSS del sitio:
   Instatic solo emite las clases que algun nodo del arbol usa. */

/* SUSTITUIDO por mobnav2.css (version rail). Neutralizado. */
.w-mobnav-v1-desactivado .w-mob-stage {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  flex: 1 1 auto;
}

.w-mob-root {
  display: flex;
  flex-direction: column;
  transition: transform .28s cubic-bezier(.16,.84,.44,1), opacity .2s ease;
}

.w-mpane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  padding-bottom: 24px;
  background: rgb(253,253,254);
  transform: translateX(100%);
  transition: transform .28s cubic-bezier(.16,.84,.44,1);
  visibility: hidden;
}

.w-mback {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 0;
  margin-bottom: 4px;
  border: 0;
  border-bottom: 1px solid var(--border-primary);
  background: transparent;
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  text-align: left;
}

.w-mback svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: var(--primary);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.w-msum-go {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: .45;
}

/* Con el segundo nivel activo, el caret del acordeon sobra. */
.w-mgrp > .w-msum > .w-caret { display: none; }

@media (prefers-reduced-motion: reduce) {
  .w-mob-root, .w-mpane { transition: none; }
}


/* src/styles/mobnav2.css */
/* Menu movil de dos niveles, version rail.
   Dos columnas del 50% dentro de una pista del 200%: deslizar es mover la
   pista, nada de posicionamiento absoluto. Las clases las crea mobnav2.js en
   tiempo de ejecucion, asi que estas reglas no pueden vivir en el CSS del
   sitio: Instatic solo emite las clases que algun nodo del arbol usa. */

.w-mstage {
  overflow-x: hidden;
  width: 100%;
}

.w-mtrack {
  display: flex;
  width: 200%;
  align-items: flex-start;
  transition: transform .3s cubic-bezier(.16,.84,.44,1);
}

.w-mcol {
  flex: 0 0 50%;
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.w-mback {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 16px 0;
  margin-bottom: 2px;
  border: 0;
  border-bottom: 1px solid var(--border-primary);
  background: transparent;
  color: var(--text-title);
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  text-align: left;
  cursor: pointer;
}

.w-mback svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: var(--primary);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.w-msum-go {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  opacity: .4;
}

/* Con el segundo nivel el caret del acordeon ya no dice nada. */
.w-mgrp > .w-msum > .w-caret { display: none; }

@media (prefers-reduced-motion: reduce) {
  .w-mtrack { transition: none; }
}
