/* =====================================================================
   Maik Homes — ficha pública de apartamento  (/apartamento/{slug})
   Prefijo pz- (piso). NO pisa ninguna clase de main.css: reutiliza sus
   variables (--accent, --brass, --line, --paper…), su tipografía
   (Fraunces + Inter) y sus componentes (.container, .btn, .book-box,
   .book-bar, .lightbox). Identidad Maik: esquinas rectas de 2px,
   papel cálido, filetes finos y numerales en latón.
   ===================================================================== */

.pz { --pz-gap: 6px; --pz-rule: 1px solid var(--line); }

/* La cabecera del sitio es sticky (72px): los anclajes no deben quedar debajo */
#fotos, #reservar, #disponibilidad, .pz-room h3 { scroll-margin-top: 88px; }

/* ---------- utilidades comunes ------------------------------------- */
.pz-sec { padding: 40px 0; border-top: var(--pz-rule); }
.pz-sec:first-child { border-top: 0; }
.pz-h { font-family: 'Fraunces', Georgia, serif; font-size: clamp(24px, 2.6vw, 30px); font-weight: 400; line-height: 1.15; letter-spacing: -.01em; }
.pz-eyebrow { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: 10px; }
.pz-num { font-variant-numeric: tabular-nums; font-feature-settings: 'tnum'; }
.pz-dot { color: var(--line); margin: 0 8px; }
.pz-mut { color: var(--ink-2); }
.pz-sm { font-size: 13px; color: var(--ink-3); }

/* Foco visible SIEMPRE (accesibilidad): filete de latón fuera del borde */
.pz :focus-visible,
.pz-lb :focus-visible { outline: 2px solid var(--brass); outline-offset: 2px; border-radius: 2px; }

/* Botón secundario propio: rectángulo con filete, nada de píldoras */
.pz-btn2 {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  padding: 12px 18px; min-height: 44px;
  border: 1px solid var(--ink); background: transparent; color: var(--ink);
  cursor: pointer; border-radius: var(--radius); transition: background .2s, color .2s;
}
.pz-btn2:hover { background: var(--ink); color: #fff; }

/* Sólo con JS: se muestran/ocultan según haya JS o no (progressive enhancement) */
.pz-jsonly { display: none; }
.js .pz-jsonly { display: inline-flex; }
.js .pz-nojs { display: none; }

/* ---------- 1. HERO: mosaico 1 + 4 --------------------------------- */
.pz-head { padding-top: 28px; }
.pz-title { font-family: 'Fraunces', Georgia, serif; font-size: clamp(30px, 4.4vw, 54px); font-weight: 400; line-height: 1.05; letter-spacing: -.02em; margin-top: 6px; }
.pz-subline { display: flex; flex-wrap: wrap; align-items: center; gap: 0 4px; margin-top: 12px; font-size: 14px; color: var(--ink-2); }
.pz-subline .pz-star { color: var(--brass); }
.pz-subline b { color: var(--ink); font-weight: 600; }

.pz-hero { position: relative; margin-top: 20px; }
.pz-mosaic { display: grid; grid-template-columns: 2fr 1fr 1fr; grid-template-rows: 210px 210px; gap: var(--pz-gap); }
.pz-mosaic a { position: relative; display: block; overflow: hidden; background: var(--paper-2); border-radius: var(--radius); }
.pz-mosaic a:first-child { grid-row: span 2; }
.pz-mosaic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.pz-mosaic a:hover img { transform: scale(1.035); }
/* Sólo 1-4 fotos: el mosaico se adapta sin huecos raros */
.pz-mosaic.n1 { grid-template-columns: 1fr; grid-template-rows: 380px; }
.pz-mosaic.n1 a:first-child { grid-row: auto; }
.pz-mosaic.n2 { grid-template-columns: 1fr 1fr; grid-template-rows: 330px; }
.pz-mosaic.n2 a:first-child { grid-row: auto; }
.pz-mosaic.n3 { grid-template-columns: 2fr 1fr; grid-template-rows: 165px 165px; }
.pz-mosaic.n4 { grid-template-columns: 2fr 1fr; grid-template-rows: 140px 140px 140px; }
.pz-mosaic.n4 a:first-child { grid-row: span 3; }

.pz-hero-cta {
  position: absolute; right: 14px; bottom: 14px;
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(250,247,242,.94); color: var(--ink);
  border: 1px solid var(--ink); border-radius: var(--radius);
  font-size: 12px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 14px; min-height: 40px; text-decoration: none;
  backdrop-filter: blur(4px); transition: background .2s, color .2s;
}
.pz-hero-cta:hover { background: var(--ink); color: #fff; }
.pz-hero-count { display: none; }

@media (max-width: 767px) {
  /* Móvil: carrusel deslizable con el pulgar, no una foto muerta */
  .pz-mosaic, .pz-mosaic.n1, .pz-mosaic.n2, .pz-mosaic.n3, .pz-mosaic.n4 {
    display: flex; grid-template-columns: none; grid-template-rows: none;
    gap: 4px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 calc(var(--pad) * -1); padding: 0 var(--pad);
  }
  .pz-mosaic::-webkit-scrollbar { display: none; }
  .pz-mosaic a, .pz-mosaic a:first-child { flex: 0 0 88%; height: 260px; scroll-snap-align: center; grid-row: auto; }
  .pz-hero-cta { right: 10px; bottom: 10px; padding: 9px 12px; font-size: 11px; }
  .pz-hero-count {
    display: block; position: absolute; left: 10px; bottom: 10px;
    background: rgba(8,25,31,.72); color: #fff; font-size: 11px;
    padding: 6px 10px; border-radius: var(--radius); font-variant-numeric: tabular-nums;
  }
}

/* ---------- 2. Resumen / capacidad --------------------------------- */
.pz-resumen { display: flex; flex-wrap: wrap; align-items: baseline; gap: 0; font-size: 15px; color: var(--ink-2); }
.pz-resumen b { color: var(--ink); font-weight: 600; }
/* Detalle humano de camas (incluye el sofá cama): lo que de verdad busca
   quien viene en grupo y el número suelto no cuenta */
.pz-camas { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--ink-3); max-width: 620px; }
.pz-owner { display: flex; align-items: center; gap: 14px; margin-top: 20px; padding-top: 20px; border-top: var(--pz-rule); }
.pz-owner-mark {
  flex: 0 0 auto; width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--accent); color: #fff; font-family: 'Fraunces', Georgia, serif;
  font-size: 19px; border-radius: var(--radius);
}
.pz-owner p { font-size: 14px; color: var(--ink-2); }
.pz-owner strong { display: block; color: var(--ink); font-size: 15px; font-weight: 600; }

/* ---------- 3. Destacados (parking, proyector…) --------------------- */
.pz-highs { display: grid; gap: 0; margin-top: 8px; }
.pz-high { display: flex; gap: 14px; padding: 16px 0; border-bottom: var(--pz-rule); }
.pz-high:last-child { border-bottom: 0; }
.pz-high .ico { flex: 0 0 auto; font-size: 20px; line-height: 1.4; width: 28px; text-align: center; }
.pz-high strong { display: block; font-size: 15px; font-weight: 600; }
.pz-high span { font-size: 13.5px; color: var(--ink-3); }

/* ---------- 4. Descripción con "Mostrar más" ----------------------- */
.pz-desc { max-width: 660px; font-size: 15.5px; line-height: 1.75; color: var(--ink-2); }
.pz-desc p { margin-bottom: 1em; }
.pz-desc p:last-child { margin-bottom: 0; }
.js .pz-desc.is-clamped { max-height: 9.5em; overflow: hidden; position: relative; }
.js .pz-desc.is-clamped::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 4em;
  background: linear-gradient(to bottom, rgba(250,247,242,0), var(--paper) 88%);
}
.pz-more { margin-top: 14px; }

/* ---------- 5. Servicios / amenities ------------------------------- */
.pz-amen { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; max-width: 660px; }
.pz-amen li { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: var(--pz-rule); font-size: 14.5px; list-style: none; }
.pz-amen .ico { flex: 0 0 auto; width: 26px; height: 26px; display: grid; place-items: center; background: var(--paper-2); border-radius: var(--radius); font-size: 14px; }
@media (max-width: 640px) { .pz-amen { grid-template-columns: 1fr; } }
/* "Lo que NO tiene": honesto, sin dramatismo — gris y tachado suave */
.pz-amen-no li { color: var(--ink-3); }
.pz-amen-no li span:last-child { text-decoration: line-through; text-decoration-color: var(--line); }

/* Panel modal con TODAS las amenities agrupadas */
.pz-modal { position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center; }
.pz-modal[hidden] { display: none; }
.pz-modal-bd { position: absolute; inset: 0; background: rgba(8,25,31,.5); }
.pz-modal-box {
  position: relative; background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); width: min(720px, calc(100% - 32px));
  max-height: 84vh; display: flex; flex-direction: column;
  box-shadow: 0 24px 64px rgba(8,25,31,.22);
}
.pz-modal-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 18px 20px; border-bottom: var(--pz-rule); }
.pz-modal-top h3 { font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 400; }
.pz-modal-x { width: 44px; height: 44px; border: 0; background: none; font-size: 26px; line-height: 1; color: var(--ink); cursor: pointer; }
.pz-modal-body { overflow-y: auto; padding: 8px 20px 24px; -webkit-overflow-scrolling: touch; }
.pz-modal-body h4 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin: 24px 0 4px; }
.pz-cat-note { font-size: 12.5px; color: var(--ink-3); margin-top: 20px; padding-top: 14px; border-top: var(--pz-rule); }
html.pz-lock, html.pz-lock body { overflow: hidden; }

/* ---------- 6. Calendario de disponibilidad ------------------------ */
.pz-cal-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
/* Sin JS no hay navegación de meses: se ocultan los botones muertos y quedan
   los dos meses pintados en servidor, que ya son datos reales. */
.pz-cal-nav { display: none; gap: 6px; }
.js .pz-cal-nav { display: flex; }
.pz-cal-nav button {
  width: 40px; height: 40px; border: 1px solid var(--line); background: transparent;
  color: var(--ink); font-size: 17px; line-height: 1; cursor: pointer; border-radius: var(--radius);
}
.pz-cal-nav button:hover:not(:disabled) { border-color: var(--ink); }
.pz-cal-nav button:disabled { opacity: .3; cursor: default; }
.pz-months { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 720px; }
.pz-month-h { font-size: 15px; font-weight: 600; text-align: center; margin-bottom: 10px; }
.pz-dow { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; margin-bottom: 4px; }
.pz-dow span { text-align: center; font-size: 11px; color: var(--ink-3); text-transform: uppercase; letter-spacing: .06em; }
.pz-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 2px; }
.pz-day {
  height: 40px; border: 0; background: transparent; font-family: inherit; font-size: 14px;
  color: var(--ink); cursor: pointer; border-radius: var(--radius);
  font-variant-numeric: tabular-nums; position: relative;
}
.pz-day:hover:not(:disabled) { background: var(--accent-soft); }
.pz-day:disabled { color: var(--line); cursor: default; }
.pz-day.is-occ { color: var(--ink-3); opacity: .55; cursor: not-allowed; }
.pz-day.is-occ::after {
  content: ''; position: absolute; left: 20%; right: 20%; top: 50%;
  border-top: 1px solid currentColor; transform: rotate(-14deg);
}
.pz-day.is-mid { background: var(--accent-soft); border-radius: 0; }
.pz-day.is-in, .pz-day.is-out { background: var(--accent); color: #fff; }
.pz-day.is-today { box-shadow: inset 0 0 0 1px var(--brass); }
.pz-cal-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 18px; font-size: 12.5px; color: var(--ink-3); }
.pz-cal-legend i { display: inline-block; width: 12px; height: 12px; margin-right: 6px; vertical-align: -1px; border: 1px solid var(--line); }
.pz-cal-legend .lg-occ { background: repeating-linear-gradient(-45deg, var(--line), var(--line) 1px, transparent 1px, transparent 4px); }
.pz-cal-legend .lg-sel { background: var(--accent); border-color: var(--accent); }
.pz-cal-msg { margin-top: 16px; font-size: 13.5px; color: var(--ink-2); min-height: 1.5em; }
.pz-cal-msg.is-warn { color: var(--warn); }
.pz-cal-go { margin-top: 16px; }
.pz-cal-vacio { font-size: 14.5px; color: var(--ink-2); }
@media (max-width: 767px) {
  .pz-months { grid-template-columns: 1fr; gap: 28px; }
  .pz-months .pz-month:nth-child(n+2) { display: none; }
  .pz-day { height: 44px; }
}

/* ---------- 7. Galería por estancias ------------------------------- */
.pz-gal { background: var(--paper-2); }
.pz-gal-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 18px 0 26px; }
.pz-gal-nav a {
  font-size: 12.5px; color: var(--ink-2); text-decoration: none;
  border: 1px solid var(--line); background: var(--paper);
  padding: 8px 14px; min-height: 40px; display: inline-flex; align-items: center;
  border-radius: var(--radius); transition: border-color .2s, color .2s;
}
.pz-gal-nav a:hover { border-color: var(--ink); color: var(--ink); }
.pz-room + .pz-room { margin-top: 34px; }
.pz-room h3 {
  font-family: 'Fraunces', Georgia, serif; font-size: 20px; font-weight: 400;
  display: flex; align-items: baseline; gap: 10px; margin-bottom: 12px;
  scroll-margin-top: 90px;
}
.pz-room h3 span { font-size: 12px; color: var(--ink-3); font-family: 'Inter', sans-serif; font-variant-numeric: tabular-nums; }
.pz-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: var(--pz-gap); }
.pz-grid a { display: block; overflow: hidden; border-radius: var(--radius); background: var(--paper); }
.pz-grid img { width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; display: block; transition: transform .5s var(--ease); }
.pz-grid a:hover img { transform: scale(1.035); }
@media (max-width: 767px) { .pz-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- 8. Opiniones ------------------------------------------- */
.pz-rev-top { display: grid; grid-template-columns: minmax(180px, 240px) 1fr; gap: 40px; align-items: start; margin-bottom: 28px; }
.pz-rev-nota { font-family: 'Fraunces', Georgia, serif; font-size: 56px; line-height: 1; color: var(--ink); }
.pz-rev-nota small { font-size: 22px; color: var(--ink-3); }
.pz-rev-stars { color: var(--brass); font-size: 15px; letter-spacing: .1em; margin-top: 8px; }
.pz-bars { display: grid; gap: 7px; }
.pz-bar { display: grid; grid-template-columns: 42px 1fr 46px; align-items: center; gap: 12px; font-size: 12.5px; color: var(--ink-3); }
.pz-bar .track { height: 5px; background: var(--line); border-radius: 999px; overflow: hidden; }
.pz-bar .fill { height: 100%; background: var(--accent); border-radius: 999px; }
.pz-bar .n { text-align: right; font-variant-numeric: tabular-nums; }
.pz-revs { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.pz-revs.is-few { grid-template-columns: repeat(auto-fit, minmax(280px, 360px)); }
.pz-rev {
  border: 1px solid var(--line); background: var(--paper);
  border-radius: var(--radius); padding: 20px;
}
.pz-rev-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.pz-rev-h b { font-size: 14.5px; font-weight: 600; }
.pz-rev-h .s { color: var(--brass); font-size: 12.5px; letter-spacing: .08em; white-space: nowrap; }
.pz-rev p { font-size: 14px; line-height: 1.65; color: var(--ink-2); display: -webkit-box; -webkit-line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
.pz-rev .meta { margin-top: 12px; font-size: 12px; color: var(--ink-3); }
.js .pz-rev.is-hidden { display: none; }   /* sin JS se ven todas: nada queda inalcanzable */
@media (max-width: 767px) { .pz-rev-top { grid-template-columns: 1fr; gap: 24px; } .pz-rev-nota { font-size: 44px; } }

/* ---------- 9. Normas + letra pequeña ------------------------------ */
.pz-normas { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 40px; max-width: 720px; }
.pz-normas h4 { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--brass); font-weight: 600; margin-bottom: 10px; }
.pz-normas li, .pz-normas p { font-size: 14px; line-height: 1.7; color: var(--ink-2); list-style: none; }
.pz-normas li + li { margin-top: 6px; }
@media (max-width: 640px) { .pz-normas { grid-template-columns: 1fr; } }
.pz-fine { margin-top: 28px; padding-top: 18px; border-top: var(--pz-rule); font-size: 12.5px; line-height: 1.7; color: var(--ink-3); }
.pz-fine b { font-weight: 600; color: var(--ink-3); }

/* ---------- 10. Caja de reserva (afina la .book-box de main.css) ---- */
.book-box .pz-book-note { font-size: 12.5px; color: var(--ink-3); margin-top: 14px; text-align: center; }
.book-box .pz-book-ok { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: var(--ok); margin-top: 12px; }
.book-box .pz-book-err { font-size: 13px; color: var(--error); margin-top: 12px; text-align: center; }
.book-box .pz-trust { margin-top: 18px; padding-top: 16px; border-top: var(--pz-rule); display: grid; gap: 9px; }
.book-box .pz-trust li { display: flex; gap: 9px; font-size: 13px; color: var(--ink-2); list-style: none; }
.book-box .pz-trust .ico { color: var(--brass); flex: 0 0 auto; }
.book-box .pz-desglose { margin-top: 16px; padding-top: 14px; border-top: var(--pz-rule); display: grid; gap: 8px; font-size: 13.5px; color: var(--ink-2); }
.book-box .pz-desglose div { display: flex; justify-content: space-between; gap: 12px; }
.book-box .pz-desglose .tot { padding-top: 10px; border-top: var(--pz-rule); font-weight: 600; color: var(--ink); font-size: 15px; }

/* ---------- 11. Lightbox mejorado ---------------------------------- */
.pz-lb { position: fixed; inset: 0; z-index: 100; background: rgba(8,25,31,.96); display: flex; flex-direction: column; }
.pz-lb[hidden] { display: none; }
.pz-lb-top { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 14px 18px; color: rgba(255,255,255,.85); font-size: 13px; }
.pz-lb-top .lbl { font-variant-numeric: tabular-nums; letter-spacing: .04em; }
.pz-lb-x { width: 44px; height: 44px; border: 0; background: none; color: #fff; font-size: 30px; line-height: 1; cursor: pointer; opacity: .85; }
.pz-lb-x:hover { opacity: 1; }
.pz-lb-stage { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; padding: 0 8px 8px; min-height: 0; touch-action: pan-y; }
.pz-lb-stage img { max-width: 100%; max-height: 100%; object-fit: contain; }
.pz-lb-prev, .pz-lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px; border: 0; border-radius: 999px;
  background: rgba(250,247,242,.14); color: #fff; font-size: 26px; line-height: 1;
  cursor: pointer; transition: background .2s;
}
.pz-lb-prev:hover, .pz-lb-next:hover { background: rgba(250,247,242,.3); }
.pz-lb-prev { left: 12px; } .pz-lb-next { right: 12px; }
@media (max-width: 767px) {
  .pz-lb-prev, .pz-lb-next { width: 44px; height: 44px; font-size: 22px; }
  .pz-lb-prev { left: 6px; } .pz-lb-next { right: 6px; }
}

/* ---------- 12. Barra inferior móvil (mejora .book-bar) ------------ */
.book-bar .pz-bb-sub { display: block; font-size: 11px; color: var(--ink-3); font-weight: 400; margin-top: 2px; }
/* La barra es fija (main.css la muestra por debajo de 1024px): se reserva su
   alto al final de la página para que no tape el pie ni el último bloque.
   Sólo afecta a esta ficha, que es la única que carga piso.css. */
@media (max-width: 1023px) {
  .site-footer .legal { padding-bottom: calc(24px + 76px + env(safe-area-inset-bottom)); }
}

/* ---------- Movimiento reducido ------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .pz-mosaic img, .pz-grid img { transition: none; }
  .pz-mosaic a:hover img, .pz-grid a:hover img { transform: none; }
  .pz-mosaic { scroll-behavior: auto; }
  .pz-lb, .pz-modal { transition: none; }
}

/* ---------- Impresión ---------------------------------------------- */
@media print {
  .pz-hero-cta, .pz-cal-nav, .book-bar, .pz-modal, .pz-lb { display: none !important; }
}
/* =====================================================================
   Iconos SVG de la ficha (sustituyen a los emojis)  ·  AÑADIR AL FINAL
   de public/assets/css/piso.css — va después a propósito: así puede
   desactivar la pastilla que .pz-amen .ico traía de la época del emoji.

   POR QUÉ SE VA LA PASTILLA: el fondo --paper-2 existía para contener el
   emoji, que es una mancha de color ajena a la paleta y necesitaba caja.
   Un icono de línea ya comparte color y grosor con la tipografía, así que
   la caja sólo añade veinte rectángulos grises que compiten con los
   filetes de la lista y convierten cada servicio en una pegatina. Sin
   ella el icono se lee como un signo más del texto: mismo tono, mismo peso.

   OJO AL ORDEN DE DESPLIEGUE: los SVG no llevan width/height (manda el
   CSS). Sin este bloque, un SVG suelto se estira hasta ocupar todo el
   ancho de su caja. Este fichero va SIEMPRE antes de parchear la vista;
   patch-iconos.php lo comprueba y aborta si no está.
   ===================================================================== */

/* ---------- Red de seguridad: ningún icono sin tamaño ---------------- */
.pz .ico, .pz .pz-star, .book-bar .pz-star {
  width: 20px; height: 20px;
  flex: 0 0 auto;
  color: var(--ink-2);
  overflow: visible;
}
.pz .ico { display: block; }

/* ---------- Destacados: el icono acompaña a un titular ---------------
   22px y tinta plena: pesa lo mismo que el <strong> que tiene al lado.
   Alineado a la PRIMERA línea, no centrado en el bloque de dos líneas,
   para que la columna de iconos siga la línea base del titular. */
.pz-high .ico {
  width: 22px; height: 22px;
  margin-top: 1px;
  color: var(--ink);
  stroke-width: 1.5;
}

/* ---------- Lista de servicios y modal: sin pastilla ----------------- */
.pz-amen .ico {
  display: block;
  width: 20px; height: 20px;
  background: none;          /* adiós pastilla */
  border-radius: 0;
  color: var(--ink-2);       /* un punto por debajo del texto: acompaña, no grita */
  stroke-width: 1.6;         /* a 20px el trazo efectivo baja a 1,33: se compensa */
}
.pz-modal .pz-amen .ico { width: 20px; height: 20px; stroke-width: 1.6; }

/* "Lo que NO tiene": el aspa, aún más callada que el texto tachado */
.pz-amen-no .ico { color: var(--ink-3); opacity: .6; stroke-width: 1.5; }

/* ---------- Estrellas: latón, en línea con el texto ------------------
   inline-block obligatorio: en .pz-rev-stars van cinco seguidas y como
   bloque se apilarían en vertical. */
.pz .pz-star,
.pz-rev-stars .ico,
.pz-rev-h .s .ico,
.book-bar .pz-star {
  display: inline-block;
  color: var(--brass);
  vertical-align: -2px;
}
.pz-subline .pz-star { width: 14px; height: 14px; }
.pz-rev-stars .ico   { width: 16px; height: 16px; margin-right: 1px; vertical-align: -3px; }
.pz-rev-h .s .ico    { width: 12px; height: 12px; vertical-align: -1.5px; }
.book-bar .pz-star   { width: 12px; height: 12px; vertical-align: -1.5px; }

/* Ya no son glifos de texto: fuera el tracking que las separaba */
.pz-rev-stars { letter-spacing: 0; line-height: 1; font-size: 0; }
.pz-rev-h .s  { letter-spacing: 0; font-size: 0; }

/* ---------- Móvil: una columna; el icono no encoge ------------------- */
@media (max-width: 640px) {
  .pz-amen .ico { width: 19px; height: 19px; }
  .pz-high .ico { width: 21px; height: 21px; }
}

/* ---------- Impresión: trazo pleno sobre blanco ---------------------- */
@media print {
  .pz .ico { color: #000; }
}

/* =====================================================================
   PASADA MÓVIL/TABLET (31-jul) — fixes conservadores, sólo esta ficha.
   Añadidos AL FINAL a propósito: sobreescriben sin tocar lo de arriba.
   ===================================================================== */

/* 1) Barras de puntuación de opiniones SIEMPRE vacías (también en
   escritorio): .fill es un <span> inline y width/height no le aplican.
   El .track sí se ve porque es grid item (blockificado). display:block
   y el width:78% inline vuelve a mandar. */
.pz-bar .fill { display: block; }

/* 2) "5 estrellas" partía en dos líneas (número arriba, palabra abajo)
   en la columna de 42px — en todas las anchuras. Se ensancha lo justo
   para que quepa en una línea; la barra cede esos 30px sin pena. */
.pz-bar { grid-template-columns: 72px 1fr 46px; }
.pz-bar > span:first-child { white-space: nowrap; }

/* 3) Con el modal de servicios o el lightbox abiertos, la book-bar fija
   quedaba visible (atenuada por el backdrop) tapando el borde inferior
   del modal en móvil. Mientras haya overlay (html.pz-lock) se oculta. */
html.pz-lock .book-bar { visibility: hidden; }

/* 4) Tablet 768–1023: el nav de escritorio no cabe (necesita ~890px,
   desborda y crea scroll horizontal en TODA la página). Misma solución
   que el móvil: burger + menú overlay, que ya funcionan a cualquier
   anchura. OJO: main.css tiene el mismo problema en el resto del sitio
   (home, /apartamentos…) — anotado para arreglarlo allí. */
@media (min-width: 768px) and (max-width: 1023px) {
  .site-header .nav { display: none; }
  .site-header .burger { display: flex; }
}
