:root {
  --slc-ink: #1a1a1a;
  --slc-orange: #e15a3d;
  --slc-mint: #2dd4a8;
  --slc-soft: #f5f5f5;
  --slc-muted: #6b7280;
  --slc-line: #e8e8e8;
  --slc-white: #ffffff;
  --slc-title: "Bree Serif", Georgia, serif;
  --slc-body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--slc-white);
  color: var(--slc-ink);
  font-family: var(--slc-body);
  letter-spacing: 0;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--slc-white);
}

button,
input,
a {
  font: inherit;
}

button {
  color: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.quote-shell {
  min-height: 100vh;
  background: var(--slc-white);
}

.quote-rail {
  display: none;
}

.quote-device,
.result-card {
  width: min(100%, 430px);
  min-height: 100vh;
  margin: 0 auto;
  background: var(--slc-white);
}

.quote-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 16px 20px;
  /* Fondo negro: el logo es un GIF a color sobre fondo blanco y necesita
     contraste oscuro para verse limpio. Solo se renderiza en mobile
     (>=820 px se oculta el header con display: none). */
  background: var(--slc-ink, #1a1a1a);
  border-bottom: 1px solid #000;
  color: var(--slc-white, #fff);
}

/* Las rayitas del menu-button heredan currentColor, así que se vuelven
   blancas automaticamente sobre el fondo negro. */
.quote-header .menu-button span {
  background: var(--slc-white, #fff);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  color: var(--slc-ink);
}

.brand-mark img {
  display: block;
  height: 56px;
  width: auto;
  max-width: 100%;
}

.brand-mark-mobile img {
  height: 40px;
}

.menu-button {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  width: 22px;
  height: 2px;
  background: var(--slc-ink);
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.back-button {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  font-size: 19px;
  cursor: pointer;
}

.progress-track {
  flex: 1;
  height: 4px;
  overflow: hidden;
  background: #e8e8e8;
  border-radius: 2px;
}

.progress-fill {
  width: 20%;
  height: 100%;
  background: var(--slc-orange);
  transition: width 180ms ease;
}

.progress-row span {
  color: #888;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.wizard-step {
  display: none;
  padding: 28px 20px 30px;
}

.wizard-step.is-active {
  display: block;
}

.wizard-step h2,
.result-card h1 {
  margin: 0 0 8px;
  color: var(--slc-ink);
  font-family: var(--slc-title);
  font-size: 30px;
  font-weight: 900;
  line-height: 1.1;
}

.wizard-step h3 {
  margin: 0 0 8px;
  font-family: var(--slc-title);
  font-size: 23px;
  line-height: 1.12;
}

.step-subtitle,
.result-card > p {
  margin: 0 0 24px;
  color: var(--slc-muted);
  font-size: 14px;
  line-height: 1.5;
}

/* Pills de garantía sobre la rejilla de modelos (paso 1). */
.reassurance-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 18px;
  padding: 0;
  list-style: none;
}

.reassurance-strip li {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(225, 90, 61, 0.10);
  color: var(--slc-orange, #E15A3D);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Pill de cobertura en el paso de CP (paso 3). */
.coverage-pill {
  display: inline-block;
  margin: -12px 0 18px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(45, 212, 168, 0.15);
  color: #1f7a4c;
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--slc-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.model-grid,
.unit-grid {
  display: grid;
  gap: 14px;
}

.model-card,
.unit-card,
.helper-card,
.skip-card,
.empty-state {
  width: 100%;
  text-align: left;
  border-radius: 4px;
}

.model-card,
.unit-card {
  border: 2px solid transparent;
  background: var(--slc-soft);
  padding: 18px;
  cursor: pointer;
}

/* Layout vertical de la card del modelo: la imagen arriba, despues el bloque
   de texto. Dentro del bloque, la descripcion crece (flex:1) y empuja el
   pill de m2 + el boton "Elegir este" al fondo. Asi todas las cards alinean
   esos dos elementos a la misma altura aunque las descripciones varien. */
.model-card {
  display: flex;
  flex-direction: column;
}

.model-card > div:last-child {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.model-card > div:last-child > p,
.model-card > div:last-child > .model-description {
  flex: 1 1 auto;
}

.model-card.is-selected,
.unit-card.is-selected {
  border-color: var(--slc-orange);
  background: var(--slc-white);
}

.model-visual,
.mini-container,
.summary-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: linear-gradient(135deg, #c6c6c6 0%, #8f8f8f 100%);
}

.model-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 112px;
  margin-bottom: 14px;
  background: var(--slc-white);
}

.model-visual::before,
.mini-container::before,
.summary-thumb::before {
  content: "";
  width: 76%;
  height: 58%;
  display: block;
  background: linear-gradient(180deg, #c8c8c8 0%, #9b9b9b 100%);
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 7px, rgba(0, 0, 0, 0.12) 7px, rgba(0, 0, 0, 0.12) 8px);
}

.model-card[data-sku*="40"] .model-visual::before {
  width: 90%;
}

/* Cuando hay imagen real del modelo, ocultamos el bloque decorativo y
   dejamos que la imagen llene el contenedor manteniendo proporcion. */
.model-visual.has-image {
  background: var(--slc-white);
}

.model-visual.has-image::before {
  display: none;
}

.model-visual.has-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 6px;
}

.mini-container,
.summary-thumb {
  width: 58px;
  height: 38px;
  flex: 0 0 auto;
}

.model-card small,
.availability-pill {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--slc-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.model-card h3,
.unit-card h3,
.skip-card strong,
.helper-card strong,
.empty-state strong {
  display: block;
  margin: 0 0 6px;
  color: var(--slc-orange);
  font-family: var(--slc-title);
  font-size: 22px;
  line-height: 1.05;
}

.model-card p,
.unit-card p,
.skip-card span,
.helper-card span,
.empty-state span {
  display: block;
  margin: 0 0 14px;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.5;
}

/* ── Descripción rica del modelo (sub-bloque mayo 2026) ────────── */
.model-description {
  margin: 0 0 14px;
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.5;
}

.model-description strong {
  display: block;
  margin-bottom: 6px;
  color: var(--slc-ink, #1a1a1a);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.model-description .model-subtitle {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--slc-ink, #1a1a1a);
}

.model-description .model-warning {
  margin: 10px 0 0;
  padding: 6px 10px;
  border-left: 3px solid #d4a017;
  background: rgba(212, 160, 23, 0.08);
  color: #6b5009;
  font-size: 12px;
  font-style: italic;
}

.model-description .usage-list,
.model-description .feature-list {
  margin: 0 0 10px;
  padding-left: 18px;
  list-style: none;
}

.model-description .usage-list li,
.model-description .feature-list li {
  position: relative;
  padding: 1px 0 1px 4px;
}

.model-description .usage-list li::before {
  content: "·";
  position: absolute;
  left: -12px;
  top: 0;
  color: var(--slc-orange, #E15A3D);
  font-weight: 900;
}

.model-description .feature-list li::before {
  content: "✓";
  position: absolute;
  left: -16px;
  top: 0;
  color: var(--slc-orange, #E15A3D);
  font-weight: 800;
  font-size: 12px;
}

.surface-pill,
.condition-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  background: var(--slc-orange);
  color: var(--slc-white);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* Bloque "X m × Y m × Z m · N m²" debajo de la descripción del modelo. */
.surface-detail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 2px 0 0;
}

.surface-detail .dimensions {
  color: var(--slc-muted, #4a4a4a);
  font-size: 12px;
  font-weight: 600;
}

.select-label,
.unit-select-btn {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 14px;
  border: 0;
  border-radius: 2px;
  background: var(--slc-ink);
  color: var(--slc-white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  text-transform: uppercase;
  cursor: pointer;
}

.unit-select-btn:hover {
  background: var(--slc-orange, #E15A3D);
}

/* Carrusel de fotos dentro de .photo-area */
.photo-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: var(--slc-white);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.15s;
}
.photo-nav:hover { background: rgba(0, 0, 0, 0.8); }
.photo-prev { left: 8px; }
.photo-next { right: 8px; }

.photo-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--slc-white);
  font-size: 11px;
  pointer-events: none;
}

/* ── Lightbox de foto a tamaño completo ─────────────────────────── */
.photo-lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: photoLightboxFadeIn 0.18s ease-out;
}

@keyframes photoLightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.photo-lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
  user-select: none;
  -webkit-user-drag: none;
}

.photo-lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--slc-white);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.photo-lightbox-close:hover { background: rgba(255, 255, 255, 0.25); }

.photo-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.12);
  color: var(--slc-white);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.photo-lightbox-nav:hover { background: rgba(255, 255, 255, 0.25); }
.photo-lightbox-prev { left: 24px; }
.photo-lightbox-next { right: 24px; }

.photo-lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--slc-white);
  font-size: 13px;
  font-weight: 600;
}

/* Móvil: flechas más juntas al borde y más pequeñas */
@media (max-width: 640px) {
  .photo-lightbox-close { top: 12px; right: 12px; }
  .photo-lightbox-prev { left: 8px; }
  .photo-lightbox-next { right: 8px; }
  .photo-lightbox-nav { width: 44px; height: 44px; font-size: 26px; }
}

.helper-card,
.skip-card,
.empty-state {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid #e5e5e5;
  background: var(--slc-white);
  cursor: pointer;
  text-align: center;
}

.skip-card {
  border-style: dashed;
}

.skip-card em {
  color: var(--slc-orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Tarjeta "¿Buscas algo diferente?" al final del paso 2.
   Tono diferenciado del skip-card: fondo sutil naranja para destacar
   sin competir visualmente con la rejilla de unidades. */
.locate-card {
  display: block;
  margin-top: 12px;
  padding: 18px;
  border: 1px solid rgba(225, 90, 61, 0.25);
  border-radius: 4px;
  background: rgba(225, 90, 61, 0.06);
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}

.locate-card:hover {
  background: rgba(225, 90, 61, 0.12);
  border-color: var(--slc-orange);
}

.locate-card strong {
  display: block;
  margin-bottom: 6px;
  font-family: var(--slc-title);
  font-size: 18px;
  color: var(--slc-ink, #1a1a1a);
}

.locate-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--slc-muted, #4a4a4a);
  font-size: 13px;
  line-height: 1.5;
}

.locate-card em {
  color: var(--slc-orange);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.availability-pill {
  padding: 7px 12px;
  border-radius: 2px;
  background: var(--slc-ink);
  color: var(--slc-white);
}

.unit-card {
  position: relative;
}

.recommended-badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 5px 10px;
  border-radius: 2px;
  background: var(--slc-orange);
  color: var(--slc-white);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.photo-area {
  position: relative;
  height: 186px;
  margin-bottom: 14px;
  overflow: hidden;
  border-radius: 4px;
  background: linear-gradient(135deg, #2c5e6e 0%, #4a7d8c 50%, #6a96a3 100%);
}

.photo-area::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, transparent 0, transparent 13px, rgba(0, 0, 0, 0.15) 13px, rgba(0, 0, 0, 0.15) 14px);
  pointer-events: none;
}

.photo-area:has(img)::after {
  display: none;
}

.photo-area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.slc-photo-tone-2 {
  background: linear-gradient(135deg, #8b6f47 0%, #a08355 50%, #b89866 100%);
}

.slc-photo-tone-3 {
  background: linear-gradient(135deg, #5a5a5a 0%, #777 50%, #9a9a9a 100%);
}

.photo-area span {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 4px 8px;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.62);
  color: var(--slc-white);
  font-size: 11px;
}

.unit-serial,
.result-product code {
  display: block;
  color: var(--slc-muted);
  font-family: "Courier New", monospace;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.unit-condition-row,
.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin: 8px 0 12px;
}

.unit-facts {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.unit-facts li {
  padding: 3px 8px;
  border-radius: 3px;
  background: var(--slc-bg, #f5f5f5);
  color: var(--slc-muted, #4a4a4a);
  font-size: 11px;
  font-weight: 600;
}

.unit-notes {
  margin: 0 0 15px;
  padding: 10px 12px;
  border-left: 3px solid var(--slc-ink);
  background: var(--slc-white);
  color: #4a4a4a;
  font-size: 13px;
  line-height: 1.5;
}

.divider-text {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 22px 0 0;
}

.divider-text span {
  flex: 1;
  height: 1px;
  background: var(--slc-line);
}

.divider-text strong {
  color: #888;
  font-size: 11px;
  letter-spacing: 1.4px;
}

.field-label {
  display: block;
  margin: 18px 0 8px;
  color: var(--slc-ink);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.field-label span {
  color: var(--slc-orange);
}

.field-label small {
  color: #888;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: none;
}

.postal-input,
.text-input,
.phone-prefix {
  width: 100%;
  min-height: 52px;
  border: 1.5px solid #dedede;
  border-radius: 4px;
  background: var(--slc-white);
  color: var(--slc-ink);
  outline: none;
}

.postal-input {
  border: 2px solid var(--slc-ink);
  padding: 14px 18px;
  font-family: "Courier New", monospace;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 4px;
}

.text-input,
.phone-prefix {
  padding: 14px 16px;
  font-size: 16px;
}

.text-input:focus,
.postal-input:focus {
  border-color: var(--slc-orange);
}

.postal-feedback,
.crane-note {
  margin-top: 12px;
  padding: 12px 14px;
  border-left: 3px solid var(--slc-mint);
  border-radius: 0 3px 3px 0;
  background: var(--slc-soft);
  color: var(--slc-ink);
  font-size: 13px;
  line-height: 1.45;
}

.postal-feedback.is-error {
  border-left-color: var(--slc-orange);
}

.section-divider {
  height: 1px;
  margin: 28px 0 22px;
  background: var(--slc-line);
}

.choice-stack {
  display: grid;
  gap: 12px;
}

.radio-card {
  display: flex;
  gap: 14px;
  width: 100%;
  padding: 18px;
  border: 2px solid transparent;
  border-radius: 4px;
  background: var(--slc-soft);
  cursor: pointer;
  text-align: left;
}

.radio-card.is-selected {
  border-color: var(--slc-ink);
  background: var(--slc-white);
}

.radio-dot {
  width: 22px;
  height: 22px;
  border: 2px solid var(--slc-ink);
  border-radius: 50%;
  background: var(--slc-white);
  flex: 0 0 auto;
}

.radio-card.is-selected .radio-dot::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 50%;
  background: var(--slc-orange);
}

.radio-card strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--slc-title);
  font-size: 18px;
}

.radio-card em {
  display: block;
  color: var(--slc-muted);
  font-size: 13px;
  font-style: normal;
  line-height: 1.5;
}

.cta-row {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.primary-button,
.secondary-button,
.reserve-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 2px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.primary-button {
  border: 0;
  background: var(--slc-orange);
  color: var(--slc-white);
}

.secondary-button {
  border: 2px solid var(--slc-ink);
  background: transparent;
  color: var(--slc-ink);
  font-size: 12px;
}

.secondary-button.full {
  margin-top: 12px;
}

.phone-row {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
}

.phone-prefix {
  background: var(--slc-soft);
  font-weight: 800;
  text-align: center;
}

.input-helper {
  margin: 6px 0 0;
  color: #888;
  font-size: 12px;
  line-height: 1.4;
}

.mini-summary,
.result-product,
.price-block,
.price-preview,
.trust-block {
  border-radius: 4px;
}

.mini-summary {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  padding: 16px;
  background: var(--slc-ink);
  color: var(--slc-white);
}

.mini-summary span {
  display: block;
  margin-top: 4px;
  color: #bcbcbc;
  font-size: 11px;
}

.mini-summary button {
  border: 0;
  background: transparent;
  color: var(--slc-orange);
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.checkbox-card {
  display: flex;
  gap: 12px;
  width: 100%;
  margin-bottom: 10px;
  padding: 14px;
  border: 0;
  border-radius: 4px;
  background: #fafafa;
  cursor: pointer;
  text-align: left;
}

.checkbox-card.optional {
  border: 1px dashed #d0d0d0;
  background: var(--slc-white);
}

.checkbox-card > span {
  width: 22px;
  height: 22px;
  border: 2px solid var(--slc-ink);
  border-radius: 3px;
  background: var(--slc-white);
  flex: 0 0 auto;
}

.checkbox-card.is-checked > span {
  position: relative;
  background: var(--slc-ink);
}

.checkbox-card.is-checked > span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--slc-white);
  border-bottom: 2px solid var(--slc-white);
  transform: rotate(45deg);
}

.checkbox-card strong {
  color: var(--slc-ink);
  font-size: 13px;
  line-height: 1.5;
}

.checkbox-card em {
  color: var(--slc-orange);
  font-size: 9px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.final-button {
  margin-top: 22px;
}

.result-preview,
.result-product {
  margin-bottom: 22px;
  padding: 18px;
  background: var(--slc-soft);
}

.result-preview strong,
.result-product h2 {
  display: block;
  margin: 0 0 8px;
  font-family: var(--slc-title);
  font-size: 24px;
}

.result-preview em {
  color: var(--slc-muted);
  font-family: "Courier New", monospace;
  font-size: 12px;
  font-style: normal;
}

.result-preview .photo-area,
.result-product .photo-area {
  height: 240px;
  margin-bottom: 14px;
}

.price-preview,
.price-block {
  margin-bottom: 20px;
  padding: 22px 20px;
  background: var(--slc-ink);
  color: var(--slc-white);
}

.price-preview div,
.price-block div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
}

.price-preview span,
.price-block span {
  color: #bcbcbc;
  font-size: 14px;
}

.price-block em {
  display: block;
  margin-top: 2px;
  color: #888;
  font-size: 11px;
  font-style: normal;
}

.price-preview strong,
.price-block strong {
  color: var(--slc-white);
  font-family: "Courier New", monospace;
  font-size: 14px;
  text-align: right;
}

.price-preview .total,
.price-block .total {
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.price-preview .total strong,
.price-block .total strong {
  color: var(--slc-orange);
  font-family: var(--slc-title);
  font-size: 30px;
  line-height: 1;
}

.price-block p {
  margin: 10px 0 0;
  color: #999;
  font-size: 11px;
}

.reserve-button {
  display: flex;
  min-height: 92px;
  flex-direction: column;
  border: 0;
  border-radius: 4px;
  background: var(--slc-orange);
  color: var(--slc-white);
  letter-spacing: 0;
}

.reserve-button span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.reserve-button strong {
  margin-top: 7px;
  font-family: var(--slc-title);
  font-size: 22px;
}

.reserve-button em {
  margin-top: 5px;
  font-size: 11px;
  font-style: normal;
  opacity: 0.86;
}

.trust-block {
  display: grid;
  gap: 0;
  margin-top: 28px;
  padding: 18px 16px;
  background: #fafafa;
}

.trust-block div {
  padding: 10px 0;
}

.trust-block div:not(:last-child) {
  border-bottom: 1px solid #ececec;
}

.trust-block strong,
.trust-block span {
  display: block;
}

.trust-block strong {
  font-size: 13px;
}

.trust-block span {
  margin-top: 3px;
  color: var(--slc-muted);
  font-size: 11px;
  line-height: 1.4;
}

.form-errors {
  margin: 18px 20px 0;
  padding: 12px 14px;
  border-left: 3px solid var(--slc-orange);
  background: #fff5f0;
  color: var(--slc-ink);
  font-size: 13px;
}

.form-errors ul {
  margin: 0;
  padding-left: 18px;
}

.result-shell {
  min-height: 100vh;
  background: var(--slc-white);
}

.result-card {
  padding: 0 20px 30px;
}

.success-banner {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 -20px 24px;
  padding: 13px 20px;
  background: var(--slc-mint);
  color: #084030;
  font-size: 12px;
}

.success-banner span {
  position: relative;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--slc-white);
  flex: 0 0 auto;
}

.success-banner span::after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 11px;
  border-right: 2px solid var(--slc-mint);
  border-bottom: 2px solid var(--slc-mint);
  transform: rotate(45deg);
}

.link-button {
  margin-top: 20px;
}

@media (min-width: 820px) {
  body {
    background:
      linear-gradient(90deg, var(--slc-ink) 0 38%, var(--slc-white) 38% 100%);
  }

  .quote-shell {
    display: grid;
    grid-template-columns: minmax(320px, 38vw) minmax(0, 1fr);
    min-height: 100vh;
  }

  .quote-rail {
    position: sticky;
    top: 0;
    align-self: start;
    display: flex;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    gap: 28px;
    padding: clamp(32px, 5vw, 70px);
    background: var(--slc-ink);
    color: var(--slc-white);
    overflow-y: auto;
  }

  .quote-rail .brand-mark,
  .quote-rail .brand-mark span {
    color: var(--slc-white);
  }

  .rail-copy h1 {
    max-width: 520px;
    margin: 0 0 14px;
    font-family: var(--slc-title);
    font-size: clamp(38px, 4.6vw, 64px);
    line-height: 0.98;
  }

  .rail-copy p:not(.eyebrow) {
    max-width: 430px;
    margin: 0;
    color: #c9c9c9;
    font-size: 16px;
    line-height: 1.55;
  }

  .rail-summary {
    display: grid;
    gap: 14px;
    max-width: 420px;
    margin-top: 215px;
  }

  .rail-summary div {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .rail-summary span {
    color: #8e8e8e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
  }

  .rail-summary strong {
    text-align: right;
  }

  .quote-device {
    width: min(100%, 900px);
    min-height: 100vh;
    margin: 0;
  }

  .quote-header {
    display: none;
  }

  .progress-row {
    position: sticky;
    top: 0;
    z-index: 5;
    padding: 22px clamp(32px, 6vw, 72px);
  }

  .wizard-step {
    padding: clamp(36px, 6vw, 72px);
  }

  .wizard-step h2,
  .result-card h1 {
    max-width: 680px;
    font-size: clamp(42px, 5vw, 70px);
  }

  .step-subtitle {
    max-width: 560px;
    font-size: 16px;
  }

  .model-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
  }

  .unit-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .photo-area {
    height: 220px;
  }

  .choice-stack,
  .cta-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-summary {
    max-width: 620px;
  }

  .result-shell {
    display: grid;
    place-items: start center;
    padding: 48px 24px;
    background: #f7f7f7;
  }

  .result-card {
    width: min(100%, 720px);
    min-height: auto;
    padding: 0 32px 34px;
    background: var(--slc-white);
    border: 8px solid var(--slc-ink);
    border-radius: 18px;
    overflow: hidden;
  }

  .success-banner {
    margin: 0 -32px 28px;
    padding-inline: 32px;
  }
}

.payment-state.hidden {
    display: none !important;
}

.payment-state {
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--slc-soft);
    border-radius: 12px;
}

#payment-element {
    margin: 1.5rem 0;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--slc-orange);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 1rem auto;
}

@keyframes spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.error-message {
    color: #C53030;
    margin-top: 1rem;
}

/* ── Wizard recomendador ────────────────────────────────────────────────── */

body.recommender-open {
  overflow: hidden;
}

.recommender-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--slc-body);
}

.recommender-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.55);
  backdrop-filter: blur(2px);
}

.recommender-panel {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--slc-white);
  border-radius: 18px 18px 0 0;
  padding: 22px clamp(20px, 5vw, 32px) 28px;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.25);
  animation: recommender-slide 0.24s ease-out;
}

@keyframes recommender-slide {
  from { transform: translateY(20px); opacity: 0.2; }
  to { transform: translateY(0); opacity: 1; }
}

.recommender-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.recommender-eyebrow {
  color: var(--slc-orange);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 12px;
}

.recommender-close {
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: var(--slc-muted);
  padding: 0 4px;
}

.recommender-close:hover {
  color: var(--slc-ink);
}

.recommender-progress {
  height: 4px;
  width: 100%;
  background: var(--slc-soft);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 20px;
}

.recommender-progress-bar {
  display: block;
  height: 100%;
  background: var(--slc-orange);
  width: 0;
  transition: width 0.24s ease;
}

.recommender-step-counter {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slc-muted);
  margin: 0 0 8px;
}

.recommender-title {
  font-family: var(--slc-title);
  font-size: clamp(22px, 4vw, 28px);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}

.recommender-hint {
  margin: 0 0 18px;
  color: var(--slc-muted);
  font-size: 14px;
  line-height: 1.55;
}

.recommender-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 12px;
}

.recommender-option {
  text-align: left;
  background: var(--slc-white);
  border: 1px solid var(--slc-line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.06s ease, box-shadow 0.18s ease;
}

.recommender-option strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  color: var(--slc-ink);
}

.recommender-option span {
  display: block;
  color: var(--slc-muted);
  font-size: 13px;
  line-height: 1.4;
}

.recommender-option:hover {
  border-color: var(--slc-orange);
  box-shadow: 0 0 0 3px rgba(225, 90, 61, 0.15);
}

.recommender-option:active {
  transform: scale(0.99);
}

.recommender-back {
  background: transparent;
  border: 0;
  color: var(--slc-muted);
  font-size: 14px;
  padding: 8px 0;
  cursor: pointer;
}

.recommender-back:hover {
  color: var(--slc-ink);
}

.recommender-loading {
  text-align: center;
  padding: 36px 0;
  color: var(--slc-muted);
  font-size: 15px;
}

.recommender-error p {
  margin: 0 0 14px;
  color: #b3261e;
}

.recommender-reasons {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.recommender-reasons li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--slc-ink);
}

.recommender-reasons li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--slc-mint);
  font-weight: 700;
}

.recommender-sku {
  color: var(--slc-orange);
}

.recommender-cta {
  display: block;
  width: 100%;
  background: var(--slc-orange);
  color: var(--slc-white);
  border: 0;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.recommender-cta:hover {
  background: #c84a30;
}

.recommender-alt {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--slc-orange);
  border: 1px solid var(--slc-orange);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 10px;
}

.recommender-alt:hover {
  background: rgba(225, 90, 61, 0.08);
}

@media (min-width: 720px) {
  .recommender-modal {
    align-items: center;
  }

  .recommender-panel {
    border-radius: 18px;
    max-width: 560px;
  }
}

/* ── Timeline de envío para el portal cliente (/q/{token}) ──────────────── */
.shipment-card {
  margin-top: 28px;
  padding: 22px 22px 24px;
  background: var(--slc-soft);
  border-radius: 14px;
  border: 1px solid var(--slc-line);
}

.shipment-card .eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slc-orange);
  font-weight: 700;
  margin: 0 0 6px;
}

.shipment-title {
  font-family: var(--slc-title);
  font-size: clamp(20px, 3.5vw, 24px);
  margin: 0 0 16px;
  letter-spacing: -0.005em;
}

.shipment-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.shipment-timeline li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.shipment-dot {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #d4d4d4;
  flex-shrink: 0;
  margin-top: 5px;
  position: relative;
}

.shipment-timeline li.done .shipment-dot {
  background: var(--slc-mint);
  box-shadow: 0 0 0 4px rgba(45, 212, 168, 0.2);
}

.shipment-body strong {
  display: block;
  font-size: 15px;
  margin-bottom: 2px;
}

.shipment-timeline li.pending .shipment-body strong {
  color: var(--slc-muted);
}

.shipment-body span {
  display: block;
  font-size: 13px;
  color: var(--slc-muted);
  line-height: 1.5;
}

.shipment-timeline li.done .shipment-body span {
  color: var(--slc-ink);
}

/* ── Banner y panel de cookies (capa básica) ─────────────────────────────── */
.cookie-consent[aria-hidden="true"] {
  display: none;
}

/* El atributo [hidden] debe ganar a los display:flex de abajo. Sin esto, el
   banner y el panel de configuración se mostrarían a la vez (parecían dos popups). */
.cookie-banner[hidden],
.cookie-panel-overlay[hidden] {
  display: none !important;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: min(960px, calc(100% - 32px));
  z-index: 9000;
  background: var(--slc-white, #fff);
  border: 1px solid var(--slc-line, #e8e8e8);
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-family: var(--slc-body, Inter, sans-serif);
}

.cookie-banner-heading {
  font-family: var(--slc-title, "Bree Serif", serif);
  font-size: 18px;
  margin: 0 0 6px;
  color: var(--slc-ink, #1a1a1a);
}

.cookie-banner-text p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.6;
  color: #2c2c2c;
}

.cookie-link {
  color: var(--slc-orange, #e15a3d);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-size: 14px;
  font-weight: 600;
}

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-btn {
  appearance: none;
  border: 1px solid var(--slc-line, #e8e8e8);
  background: var(--slc-white, #fff);
  color: var(--slc-ink, #1a1a1a);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 18px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.cookie-btn-ghost:hover {
  border-color: var(--slc-ink, #1a1a1a);
}

.cookie-btn-primary {
  background: var(--slc-orange, #e15a3d);
  border-color: var(--slc-orange, #e15a3d);
  color: #fff;
}

.cookie-btn-primary:hover {
  filter: brightness(0.95);
}

.cookie-panel-overlay {
  position: fixed;
  inset: 0;
  z-index: 9100;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.cookie-panel {
  background: var(--slc-white, #fff);
  border-radius: 16px;
  width: min(620px, 100%);
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  font-family: var(--slc-body, Inter, sans-serif);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.cookie-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--slc-line, #e8e8e8);
}

.cookie-panel-head h2 {
  font-family: var(--slc-title, "Bree Serif", serif);
  font-size: 20px;
  margin: 0;
}

.cookie-panel-close {
  appearance: none;
  border: 0;
  background: none;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  color: var(--slc-muted, #6b7280);
}

.cookie-panel-body {
  padding: 8px 24px;
  overflow-y: auto;
}

.cookie-cat {
  border: 0;
  border-bottom: 1px solid var(--slc-line, #e8e8e8);
  margin: 0;
  padding: 16px 0;
}

.cookie-cat:last-of-type {
  border-bottom: 0;
}

.cookie-cat-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 700;
  color: var(--slc-ink, #1a1a1a);
}

.cookie-cat-row input {
  width: 18px;
  height: 18px;
  accent-color: var(--slc-orange, #e15a3d);
  flex: 0 0 auto;
}

.cookie-cat-title {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
}

.cookie-cat-title em {
  font-style: normal;
  font-weight: 600;
  font-size: 12px;
  color: var(--slc-mint, #2dd4a8);
}

.cookie-cat p {
  margin: 8px 0 0 28px;
  font-size: 13px;
  line-height: 1.55;
  color: #555;
}

.cookie-panel-note {
  margin: 14px 0 4px;
  padding: 12px 14px;
  border-radius: 10px;
  background: rgba(225, 90, 61, 0.08);
  font-size: 13px;
  color: #7a2b1c;
}

.cookie-panel-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding: 18px 24px;
  border-top: 1px solid var(--slc-line, #e8e8e8);
}

.cookie-panel-foot-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-cookie-button {
  appearance: none;
  border: 1px solid var(--slc-orange, #e15a3d);
  background: var(--slc-white, #fff);
  color: var(--slc-orange, #e15a3d);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
}

.legal-cookie-button:hover {
  background: var(--slc-orange, #e15a3d);
  color: #fff;
}

@media (max-width: 560px) {
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-banner-actions .cookie-btn {
    flex: 1 1 100%;
  }
}

/* ── Información básica de protección de datos (capa básica en formularios) ─ */
.privacy-basic {
  border: 1px solid var(--slc-line, #e8e8e8);
  border-radius: 10px;
  background: var(--slc-soft, #f5f5f5);
  padding: 0 14px;
  margin: 8px 0 14px;
  font-family: var(--slc-body, Inter, sans-serif);
}

.privacy-basic > summary {
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: var(--slc-ink, #1a1a1a);
  padding: 12px 0;
  list-style: revert;
}

.privacy-basic dl {
  margin: 0 0 12px;
  display: grid;
  grid-template-columns: minmax(110px, 150px) 1fr;
  gap: 4px 14px;
  font-size: 12.5px;
  line-height: 1.5;
}

.privacy-basic dt {
  font-weight: 700;
  color: #444;
}

.privacy-basic dd {
  margin: 0;
  color: #555;
}

.privacy-basic a {
  color: var(--slc-orange, #e15a3d);
  text-decoration: underline;
}

@media (max-width: 480px) {
  .privacy-basic dl {
    grid-template-columns: 1fr;
    gap: 0 0;
  }
  .privacy-basic dd {
    margin: 0 0 8px;
  }
}

/* ── Confirmación de términos en el paso de pago de la señal ─────────────── */
.reserve-precontract {
  border: 1px solid var(--slc-line, #e8e8e8);
  border-left: 4px solid var(--slc-orange, #e15a3d);
  border-radius: 10px;
  background: var(--slc-soft, #f5f5f5);
  padding: 14px 16px;
  margin-bottom: 14px;
}

.reserve-precontract strong {
  display: block;
  margin-bottom: 4px;
  font-size: 14px;
  color: var(--slc-ink, #1a1a1a);
}

.reserve-precontract p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: #555;
}

.reserve-precontract a {
  color: var(--slc-orange, #e15a3d);
  text-decoration: underline;
}

.reserve-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  margin-bottom: 14px;
  font-size: 13.5px;
  line-height: 1.5;
  color: #2c2c2c;
}

.reserve-terms input {
  width: 20px;
  height: 20px;
  margin-top: 1px;
  flex: 0 0 auto;
  accent-color: var(--slc-orange, #e15a3d);
}

.reserve-terms a {
  color: var(--slc-orange, #e15a3d);
  text-decoration: underline;
}

.reserve-button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.terms-reminder {
  margin: 8px 0 0;
  text-align: center;
  font-size: 13px;
  color: var(--slc-orange, #e15a3d);
}

/* ── Footer de marketing reutilizado al final del cotizador (columna derecha) ─
   Mismas reglas que .marketing-footer* en marketing.css, copiadas aquí para que
   el cotizador (que solo carga site.css) muestre el footer idéntico sin tener
   que cargar marketing.css (evita colisiones de clases compartidas). */
.marketing-footer {
  background: var(--slc-ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px clamp(20px, 5vw, 80px) 28px;
}

.marketing-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1080px;
  margin: 0 auto 32px;
}

.marketing-footer p {
  margin: 0 0 6px;
  font-size: 14px;
}

.marketing-footer a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  padding: 3px 0;
}

.marketing-footer a:hover {
  color: var(--slc-mint);
}

.marketing-footer-brand {
  font-family: var(--slc-title);
  font-size: 16px;
  color: var(--slc-white);
}

.marketing-footer-heading {
  font-weight: 700;
  color: var(--slc-white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px !important;
  margin-bottom: 10px !important;
}

.marketing-footer-copy {
  max-width: 1080px;
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 720px) {
  .marketing-footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* La columna derecha del cotizador (quote-main) envuelve el wizard (quote-device,
   ancho de contenido) y el footer. El footer ocupa el 100% de quote-main, es decir
   todo el ancho de la columna derecha; quote-device mantiene su ancho de contenido.
   quote-device conserva min-height:100vh, así que el footer queda al final del scroll
   (justo bajo el pliegue en pasos cortos) sin huecos a media página. */
.quote-main {
  min-width: 0;
}
