:root {
  color-scheme: only light;
  --yellow: #ffd000;
  --ink: #111;
  --black: #0a0a0a;
  --sidebar: #2f2f2f;
  --sidebar-text: #f3f3f3;
  --muted: #5c5c5c;
  --line: #e4e4e4;
  --paper: #fff;
  --stage: #0b0b0b;
  --ofertas-bg: #fff;
  --green: #12b85a;
  --green-deep: #0c7a3c;
  --red: #e23b3b;
  --radius: 18px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  height: 100%;
  background: var(--black);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  color-scheme: only light;
}

body { min-height: 100vh; }
h2, h3 { margin: 0 0 0.4em; }
button { font-family: inherit; cursor: pointer; }

.split {
  display: grid;
  grid-template-columns: 268px 1fr;
  min-height: 100vh;
}

.sidebar {
  background: var(--sidebar);
  color: var(--sidebar-text);
  padding: 18px 14px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.logo-btn {
  border: 0;
  background: var(--yellow);
  border-radius: 16px;
  padding: 10px 12px;
  overflow: hidden;
}

.logo-btn img {
  width: 100%;
  display: block;
}

.home-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 0;
  background: #3d3d3d;
  color: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 700;
}

.home-btn svg {
  width: 18px;
  height: 18px;
  fill: var(--yellow);
}

.home-btn:hover { background: #4a4a4a; }

.menu { display: flex; flex-direction: column; gap: 8px; }

.menu button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  border: 0;
  background: #3a3a3a;
  text-align: left;
  padding: 11px 12px;
  font-size: 0.92rem;
  font-weight: 650;
  color: var(--sidebar-text);
  border-radius: 16px;
}

.menu button:hover { background: #484848; }
.menu button.is-on {
  background: var(--yellow);
  color: var(--ink);
}

.ico {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  flex: 0 0 36px;
}

.ico svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sidebar-note {
  margin-top: auto;
  color: #c8c8c8;
  font-size: 0.8rem;
  line-height: 1.45;
}

.main-col { position: relative; min-width: 0; }

.home-float {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 30;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--yellow);
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
}

.home-float svg { width: 22px; height: 22px; fill: var(--ink); }

.kpi-stack {
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 70;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.kpi-stack[hidden],
.home-float[hidden] { display: none !important; }

.totales-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 0;
  background: #111;
  padding: 8px 16px 8px 8px;
  border-radius: 18px;
  text-align: right;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
}

.kpi-cart {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--yellow);
  display: grid;
  place-items: center;
  flex: 0 0 40px;
}

.kpi-cart svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seguir-kpi {
  border: 0;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.68rem;
  padding: 6px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
  align-self: flex-end;
}

.seguir-kpi[hidden] { display: none; }

.totales-bar span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.totales-bar strong { font-size: 1.2rem; line-height: 1.1; }

.kpi-total,
.kpi-ahorro {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1px;
}

.totales-bar .kpi-total { color: var(--green); }
.totales-bar .kpi-total span { color: #b7f0cc; }
.totales-bar .kpi-ahorro { color: #e23b3b; }
.totales-bar .kpi-ahorro span { color: #ffb4b4; }

.totales-bar.pop { animation: ahorro-pop 0.65s cubic-bezier(0.2, 1.4, 0.3, 1); }

@keyframes ahorro-pop {
  0% { transform: scale(0.45); opacity: 0; }
  55% { transform: scale(1.12); }
  100% { transform: scale(1); opacity: 1; }
}

.stage {
  background: var(--stage);
  overflow: auto;
  min-height: 100vh;
}

.hero, .hero img {
  width: 100%;
  height: 100%;
  min-height: 100vh;
}

.hero img {
  object-fit: cover;
  object-position: 62% 30%;
  display: block;
}

.home-screen {
  position: relative;
  min-height: 100vh;
  background: #000;
  overflow: hidden;
}

.home-logo { display: none; }

.home-foto {
  width: 100%;
  height: 100%;
  min-height: 100vh;
  object-fit: cover;
  object-position: 55% 28%;
  display: block;
}

.home-contacto {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.home-dir,
.home-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.86rem;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
}

.home-dir {
  background: rgba(0, 0, 0, 0.58);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-dir svg {
  width: 15px;
  height: 15px;
  fill: #ffd000;
  flex: 0 0 15px;
}

.home-wa {
  background: #fff;
  color: #111;
}

.wa-logo {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  display: block;
}

.wa-logo svg { width: 28px; height: 28px; display: block; }

.panel { padding: 72px 28px 56px; min-height: 100vh; }
.panel.claro { background: var(--ofertas-bg); color: var(--ink); }
.lead { color: var(--muted); max-width: 40rem; }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  position: relative;
  border: 0;
  padding: 0;
  background: #fff;
  text-align: left;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card:hover { transform: translateY(-2px); }
.card-en-carro { box-shadow: 0 0 0 2px var(--yellow), 0 8px 24px rgba(255, 208, 0, 0.22); }
.card-photo { position: relative; height: 170px; background: #222 center/cover no-repeat; }
.card-tags {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  pointer-events: none;
}
.tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tag-carrito { background: var(--yellow); color: var(--ink); }
.tag-dto { background: var(--green); color: #042; }
.card-body { padding: 14px 16px 16px; }
.card-body p { margin: 0 0 10px; color: var(--muted); font-size: 0.88rem; }
.card-combo { margin: 6px 0 0 !important; font-size: 0.78rem !important; font-weight: 700; }
.precio { font-weight: 800; }
.precio-card-oferta { color: var(--green); font-weight: 800; font-size: 1.15rem; }
.card .ahorro-tag {
  display: block;
  width: fit-content;
  max-width: 100%;
  line-height: 1.25;
  white-space: normal;
}

.filtro {
  max-width: 480px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  color: var(--ink);
}

.field { display: block; margin-top: 14px; }
.field span { display: block; margin-bottom: 6px; font-size: 0.8rem; font-weight: 700; }
.field input, .field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid #d0d0d0;
  border-radius: 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
  color-scheme: light;
}

.dd { position: relative; margin-top: 14px; }
.dd-label { display: block; margin-bottom: 6px; font-size: 0.8rem; font-weight: 700; color: var(--ink); }
.dd-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 2px solid #111;
  border-radius: 12px;
  background: #fff;
  color: #111;
  font: inherit;
  font-weight: 700;
}
.dd-btn b { color: #111; font-size: 0.85rem; }
.dd-btn:disabled { opacity: 0.4; cursor: not-allowed; background: #f3f3f3; }
.dd-list {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 4px);
  z-index: 25;
  max-height: 220px;
  overflow: auto;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: #fff;
  border: 2px solid #111;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}
.dd-list[hidden] { display: none; }
.dd-list button {
  width: 100%;
  text-align: left;
  border: 0;
  background: #fff;
  color: #111;
  padding: 10px 12px;
  border-radius: 8px;
  font: inherit;
  font-weight: 650;
}
.dd-list button.is-on,
.dd-list button:hover { background: var(--yellow); color: #111; }

.aviso { color: #8a7418; font-size: 0.85rem; }

.btn-primary, .btn-ghost, .btn-line, .btn-green, .btn-soft {
  border: 0;
  padding: 12px 16px;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 14px;
}

.btn-primary { background: var(--ink); color: var(--yellow); }
.btn-green { background: var(--green); color: #042; }
.btn-soft { background: #eee; color: var(--ink); }
.btn-line { background: #fff; color: var(--ink); }
.btn-block { width: 100%; margin-top: 12px; }
.btn-row { display: flex; gap: 8px; margin-top: 10px; }
.btn-row button { flex: 1; }

.detalle-full {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  min-height: 100vh;
  background: #111;
  color: #fff;
}

.detalle-foto {
  position: relative;
  min-height: 420px;
  background: #000 center/cover no-repeat;
}
.precio-fila {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: 12px;
}
.precio-col { min-width: 0; }
.btn-add-precio,
.btn-en-carro {
  flex: 0 0 auto;
  border: 0;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 10px 14px;
  border-radius: 14px;
  color-scheme: only light;
  forced-color-adjust: none;
}
.btn-add-precio {
  background: var(--yellow);
  color: #111;
}
.btn-en-carro {
  background: var(--green);
  color: #042;
}
.detalle-copy { padding: 72px 32px 48px; }
.suma-ofertas { margin-top: 22px; }
.suma-ofertas h3 { font-size: 1.15rem; }
.detalle-extras { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.detalle-extras img { width: 96px; height: 72px; object-fit: cover; border-radius: 10px; }
.precio-oferta { margin-top: 8px; color: var(--green); font-size: 1.35rem; font-weight: 800; }
.precio-lista.tachado { text-decoration: line-through; color: #9a9a9a; font-size: 1.05rem; }

.ahorro-tag {
  display: inline-block;
  margin-top: 8px;
  background: var(--green);
  color: #042;
  font-weight: 800;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.minis {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.mini {
  background: #1b1b1b;
  color: #fff;
  border-radius: 16px;
  overflow: hidden;
}

.mini-foto { height: 96px; background: #333 center/cover no-repeat; }
.mini-body { padding: 10px; }
.mini .lista { color: #9a9a9a; text-decoration: line-through; font-size: 0.8rem; }
.mini .nuevo { color: var(--green); font-weight: 800; }

.cal-wrap {
  max-width: 420px;
  background: #fff;
  border-radius: 20px;
  padding: 16px;
  margin-top: 12px;
}

.cal-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.cal-nav button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 12px;
  background: #f1f1f1;
  font-size: 1.1rem;
}

.cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.cal b, .cal button {
  text-align: center;
  padding: 10px 0;
  font-size: 0.82rem;
  border-radius: 12px;
}

.cal button { border: 0; background: #f6f6f6; }
.cal button:disabled { opacity: 0.28; cursor: not-allowed; }
.cal button.is-on { background: var(--yellow); font-weight: 800; }

.modal-horas {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 55;
  display: grid;
  place-items: center;
  padding: 20px;
}

.modal-horas[hidden] { display: none; }

.modal-card {
  position: relative;
  width: min(340px, 100%);
  background: #fff;
  border-radius: 22px;
  padding: 22px 18px 18px;
}

.modal-card.ancho { width: min(440px, 100%); }

.quitar-nums {
  display: grid;
  gap: 8px;
  margin: 16px 0 4px;
  padding: 12px;
  background: #f6f6f6;
  border-radius: 14px;
}

.quitar-nums div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.92rem;
}

.quitar-nums .final { color: var(--green); font-weight: 800; }
.quitar-nums .perdida { color: var(--red); font-weight: 800; }

.modal-modulo {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ofertas-bg);
  display: grid;
  place-items: center;
  padding: 0;
}

.modal-modulo[hidden] { display: none; }

.modal-modulo .drawer-close {
  top: 18px;
  right: 22px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fff;
  font-size: 2rem;
  line-height: 1;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.modal-modulo-card {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background: var(--ofertas-bg);
  border-radius: 0;
  padding: 72px 32px 48px;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.modal-modulo-card .lead { margin-left: auto; margin-right: auto; }

.informe-form { width: min(380px, 100%); margin: 32px auto 0; text-align: left; }

.kpi-acciones { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; }
.horas-lista { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.horas-lista button {
  border: 0;
  background: #f3f3f3;
  border-radius: 14px;
  padding: 14px;
  font-weight: 800;
  text-align: left;
}

.horas-lista button.is-on { background: var(--yellow); }

.resumen { margin: 18px 0; padding: 0; }
.resumen li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.resumen-item { display: flex; justify-content: space-between; align-items: center; }
.resumen-nom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}
.btn-basura {
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 9px;
  background: #f3f3f3;
  display: grid;
  place-items: center;
  flex: 0 0 30px;
}

.btn-basura svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: var(--red);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-basura:hover { background: #ffe8e8; }

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 40;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100%);
  height: 100vh;
  background: #fff;
  z-index: 50;
  overflow: auto;
  padding: 28px 24px 48px;
  box-shadow: var(--shadow);
}

.drawer-ticket { width: min(520px, 100%); background: #eee; }
.drawer-close {
  position: absolute;
  top: 10px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 12px;
  background: var(--yellow);
  font-size: 1.6rem;
  line-height: 1;
}
.ticket-acciones {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}

.muted { color: var(--muted); line-height: 1.5; }

.ticket-sheet {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  color: #111;
}

.ticket-head {
  background: var(--yellow);
  padding: 18px 18px 14px;
}

.ticket-head img { width: 180px; display: block; }
.ticket-body { padding: 18px; }
.ticket-code {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 6px;
}

.ticket-grid { display: grid; grid-template-columns: 1fr 170px; gap: 16px; align-items: start; }
.ticket-qr { width: 160px; height: 160px; margin: 0 auto; }
.ticket-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.ticket-table td { padding: 7px 0; border-bottom: 1px solid #eee; }
.ticket-table td:last-child { text-align: right; font-weight: 700; }

@media (max-width: 860px) {
  .split {
    display: block;
    grid-template-columns: 1fr;
  }
  .detalle-full { grid-template-columns: 1fr; }
  .ticket-grid { grid-template-columns: 1fr; }

  html, body { height: auto; }
  body.en-portada {
    height: 100dvh;
    overflow: hidden;
  }
  body.en-portada .split {
    display: block;
    height: 100dvh;
    overflow: hidden;
  }
  body.en-portada .main-col,
  body.en-portada .stage,
  body.en-portada .home-screen {
    height: 100dvh;
    min-height: 100dvh;
  }
  body.en-portada .home-foto {
    height: 100dvh;
    min-height: 100dvh;
  }

  .sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    background: rgba(47, 47, 47, 0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 6px 0 calc(8px + env(safe-area-inset-bottom, 0px));
    gap: 0;
  }
  body:not(.en-portada) .sidebar {
    background: rgba(47, 47, 47, 0.88);
  }
  .sidebar .logo-btn,
  .sidebar .home-btn,
  .sidebar-note { display: none; }

  .menu {
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    padding: 4px 4px 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu::-webkit-scrollbar { display: none; }
  .menu button {
    flex: 0 0 25%;
    width: 25%;
    scroll-snap-align: start;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    color: var(--yellow);
    text-align: center;
    padding: 6px 4px 4px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.15;
    border-radius: 0;
    text-shadow: none;
    color-scheme: only light;
    forced-color-adjust: none;
  }
  .menu button:hover,
  .menu button.is-on {
    background: transparent;
    color: var(--yellow);
  }
  .menu-txt { display: block; }
  .ico {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--yellow);
    margin: 0 auto;
    color-scheme: only light;
    forced-color-adjust: none;
  }
  .menu button.is-on .ico { box-shadow: 0 0 0 2px var(--yellow); }

  .home-logo {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    width: 100%;
    padding: 0;
    background: var(--yellow);
    color-scheme: only light;
    forced-color-adjust: none;
  }
  .home-logo img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0;
    object-fit: cover;
    object-position: center;
    color-scheme: only light;
    forced-color-adjust: none;
  }
  .home-foto {
    position: absolute;
    inset: 0;
    min-height: 0;
    height: 100%;
    object-fit: cover;
    object-position: 52% 30%;
    transform: scale(1.45);
    transform-origin: 50% 18%;
  }
  .home-contacto {
    bottom: calc(118px + env(safe-area-inset-bottom, 0px));
  }
  .home-dir,
  .home-wa { font-size: 0.78rem; padding: 7px 12px; }
  .wa-logo,
  .wa-logo svg { width: 26px; height: 26px; }

  .home-float {
    top: 10px;
    left: 10px;
    width: 40px;
    height: 40px;
  }

  .kpi-stack {
    top: 10px;
    right: 10px;
    bottom: auto;
    left: auto;
    z-index: 80;
  }

  .totales-bar {
    gap: 8px;
    padding: 5px 10px 5px 5px;
    border-radius: 16px;
    border: 2px solid var(--yellow);
    background: #111;
  }

  .kpi-cart {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: var(--yellow);
    display: grid;
  }

  .totales-bar .kpi-cart { display: grid; }
  .totales-bar span { font-size: 0.5rem; letter-spacing: 0.04em; }
  .kpi-cart svg { width: 18px; height: 18px; }
  .totales-bar strong { font-size: 0.78rem; }
  .totales-bar .kpi-total { color: #12b85a; }
  .totales-bar .kpi-ahorro { color: #e23b3b; }

  .seguir-kpi { font-size: 0.6rem; padding: 4px 8px; }

  .sidebar { z-index: 90; }
  .drawer-ticket {
    width: 100%;
    height: auto;
    bottom: calc(88px + env(safe-area-inset-bottom, 0px));
    padding-bottom: 24px;
    z-index: 55;
  }

  .panel { padding: 56px 14px 120px; min-height: auto; }
  .hero, .hero img { min-height: 70vh; }

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

  .card { border-radius: 14px; }
  .card-photo { height: 86px; }
  .card-body { padding: 8px 9px 10px; }
  .card-body h3 {
    font-size: 0.78rem;
    line-height: 1.25;
    margin: 0 0 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .card-body p { display: none; }
  .card-combo { display: none !important; }
  .precio, .precio-card-oferta { font-size: 0.82rem; }
  .card .ahorro-tag { font-size: 0.68rem; padding: 3px 6px; }
  .tag { font-size: 0.58rem; padding: 3px 6px; }

  .detalle-foto { min-height: 210px; }
  .precio-fila { align-items: center; }
  .btn-add-precio,
  .btn-en-carro { font-size: 0.72rem; padding: 9px 12px; }
  .detalle-copy { padding: 18px 14px 120px; }
  .detalle-copy .lead { font-size: 0.92rem; }
  .suma-ofertas h3 {
    font-size: 1.05rem;
    margin-bottom: 10px;
  }
  .minis { grid-template-columns: 1fr 1fr; gap: 8px; }
  .mini { border-radius: 12px; }
  .mini-foto { height: 70px; }
  .mini-body { padding: 8px; }
  .mini-body strong {
    display: block;
    font-size: 0.72rem;
    line-height: 1.25;
    margin-bottom: 4px;
  }
  .mini .btn-row { gap: 6px; }
  .mini .btn-row button { padding: 7px 6px; font-size: 0.68rem; border-radius: 10px; }

  .filtro { padding: 18px 16px 16px; }
  .dd-list { max-height: 200px; }
}
