/* ============================================================
   COTIZADOR MUNET — Estilo MUNET Simulador
   Paleta matrix verde + dorado del diseño del cliente
   Funcionalidad intacta, solo restyling visual
   ============================================================ */

/* ── OVERRIDE TOKENS para cotizador ── */
.cotizador-page {
  --ctz-bk:   #050905;
  --ctz-dk:   #070F09;
  --ctz-card: #09130B;
  --ctz-g:    #00FF41;
  --ctz-go:   #D4AF37;
  --ctz-wh:   #EDF8ED;
  --ctz-tx:   rgba(200,236,200,0.6);
  --ctz-bd:   rgba(0,255,65,0.12);
}

.cotizador-page .sys-section {
  background: var(--ctz-bk);
  padding: 0;
}

/* Scanline overlay on cotizador body */
.cotizador-page::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background: repeating-linear-gradient(0deg, transparent, transparent 4px, rgba(0,0,0,0.02) 4px, rgba(0,0,0,0.02) 5px);
}

/* ── LAYOUT ── */
.ctz-shell {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 0;
  min-height: calc(100vh - 64px);
}

/* ── LEFT — CONFIGURADOR ── */
.ctz-left {
  padding: 40px 44px;
  border-right: 1px solid var(--ctz-bd);
  overflow-y: auto;
  background: var(--ctz-bk);
}

.ctz-section-label {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .38em;
  color: rgba(0,255,65,.35);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.ctz-section-label::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--ctz-g);
}

/* ── FORM — Datos del evento ── */
.ctz-form-grid {
  background: var(--ctz-dk);
  border: 1px solid var(--ctz-bd);
  clip-path: none;
  padding: 24px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.ctz-form-grid::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--ctz-g), rgba(0,255,65,.2), transparent);
}
.ctz-field {
  flex: 1;
}
.ctz-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.ctz-field-label {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .2em;
  color: var(--ctz-wh);
  padding: 0 0 4px;
  background: transparent;
  border: none;
}
.ctz-field-input {
  display: block;
  width: 100%;
  padding: 10px 14px;
  background: rgba(5,9,5,.6);
  border: 1px solid var(--ctz-bd);
  color: var(--ctz-wh);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .04em;
  outline: none;
  transition: all .2s;
}
.ctz-field-input::placeholder {
  color: rgba(200,236,200,.25);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .08em;
}
.ctz-field-input:focus {
  border-color: rgba(0,255,65,.4);
  background: rgba(0,255,65,.05);
}
.ctz-field-input[type="date"] {
  font-family: 'Space Mono', monospace;
  font-size: 13px;
  color: var(--ctz-g);
}
.ctz-field-input[type="date"]::-webkit-datetime-edit-fields-wrapper {
  color: rgba(200,236,200,.3);
  font-family: 'Space Mono', monospace;
  font-size: 9px;
  letter-spacing: .08em;
}
.ctz-field-input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.6) sepia(.8) saturate(5) hue-rotate(85deg);
  cursor: pointer;
}

/* Tipo de evento */
.ctz-tipo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 36px;
}
.ctz-tipo-btn {
  padding: 16px 20px;
  background: var(--ctz-dk);
  border: 1px solid var(--ctz-bd);
  clip-path: none;
  cursor: pointer;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
  overflow: hidden;
}
.ctz-tipo-btn::before {
  display: none;
}
.ctz-tipo-btn:hover {
  border-color: rgba(0,255,65,.3);
  background: var(--ctz-card);
}
.ctz-tipo-btn.active {
  border-color: var(--ctz-g);
  background: rgba(0,255,65,.07);
}
.ctz-tipo-btn-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--ctz-wh);
  letter-spacing: .06em;
}
.ctz-tipo-btn-desc {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .15em;
  color: rgba(200,236,200,.3);
}
.ctz-tipo-btn.active .ctz-tipo-btn-name {
  color: var(--ctz-g);
}

/* Day selector */
.ctz-day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 36px;
}
.ctz-day-btn {
  padding: 14px 18px;
  background: var(--ctz-dk);
  border: 1px solid var(--ctz-bd);
  clip-path: none;
  cursor: pointer;
  transition: all .2s;
  font-family: 'Rajdhani', sans-serif;
  position: relative;
  overflow: hidden;
}
.ctz-day-btn::before {
  display: none;
}
.ctz-day-btn:hover {
  border-color: rgba(0,255,65,.25);
}
.ctz-day-btn.active {
  border-color: var(--ctz-g);
  background: rgba(0,255,65,.06);
}
.ctz-day-btn-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--ctz-wh);
  letter-spacing: .06em;
}
.ctz-day-btn-detail {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .12em;
  color: rgba(200,236,200,.28);
  margin-top: 2px;
}
.ctz-day-btn.active .ctz-day-btn-name {
  color: var(--ctz-g);
}

/* ── SPACE CARDS ── */
.ctz-spaces-grid {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ctz-space-card {
  background: var(--ctz-dk);
  border: 1px solid var(--ctz-bd);
  clip-path: none;
  position: relative;
  overflow: hidden;
  transition: all .25s;
  cursor: pointer;
}
.ctz-space-card::before {
  display: none;
}
.ctz-space-card:hover {
  border-color: rgba(0,255,65,.22);
}
.ctz-space-card.selected {
  border-color: rgba(0,255,65,.35);
}
.ctz-space-card.disabled {
  opacity: .35;
  cursor: not-allowed;
  pointer-events: none;
}

.ctz-sc-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 0;
}

/* checkbox col */
.ctz-sc-check {
  padding: 22px 20px;
  border-right: 1px solid var(--ctz-bd);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctz-checkbox {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(0,255,65,.25);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  flex-shrink: 0;
}
.ctz-space-card.selected .ctz-checkbox {
  background: var(--ctz-g);
  border-color: var(--ctz-g);
}
.ctz-checkbox-tick {
  width: 12px;
  height: 9px;
  display: none;
}
.ctz-space-card.selected .ctz-checkbox-tick {
  display: block;
}

/* info col */
.ctz-sc-info {
  padding: 18px 22px;
}
.ctz-sc-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--ctz-wh);
  letter-spacing: .05em;
  line-height: 1;
}
.ctz-sc-meta {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .12em;
  margin-top: 4px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.ctz-sc-m2 { color: rgba(0,255,65,.5); }
.ctz-sc-cap { color: rgba(212,175,55,.5); }
.ctz-sc-note { color: rgba(255,200,0,.45); }

/* price col */
.ctz-sc-price {
  padding: 18px 22px;
  border-left: 1px solid var(--ctz-bd);
  text-align: right;
  min-width: 160px;
}
.ctz-sc-price-main {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  letter-spacing: .02em;
}
.ctz-sc-price-period {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .12em;
  color: rgba(200,236,200,.28);
  margin-top: 2px;
}

/* montaje toggle */
.ctz-sc-montaje {
  padding: 10px 20px 14px 62px;
  border-top: 1px solid rgba(0,255,65,.05);
  display: none;
}
.ctz-space-card.selected .ctz-sc-montaje {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ctz-montaje-label {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .15em;
  color: rgba(200,236,200,.4);
}
.ctz-montaje-days {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ctz-days-input {
  display: flex;
  align-items: center;
  gap: 8px;
}
.ctz-event-minus,
.ctz-event-plus,
.ctz-day-minus,
.ctz-day-plus {
  width: 28px;
  height: 28px;
  background: rgba(0,255,65,.08);
  border: 1px solid rgba(0,255,65,.2);
  clip-path: none;
  color: var(--ctz-g);
  font-family: 'Space Mono', monospace;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
  font-weight: 700;
}
.ctz-event-minus:hover,
.ctz-event-plus:hover,
.ctz-day-minus:hover,
.ctz-day-plus:hover {
  background: rgba(0,255,65,.15);
}
.ctz-day-count {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ctz-wh);
  min-width: 32px;
  text-align: center;
  line-height: 1;
}
.ctz-montaje-subtotal {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(200,236,200,.4);
}

/* ── RIGHT — RESUMEN ── */
.ctz-right {
  background: var(--ctz-card);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow: hidden;
  border-left: 1px solid var(--ctz-bd);
}

.ctz-right-hd {
  padding: 16px 28px 12px;
  border-bottom: 1px solid var(--ctz-bd);
  position: relative;
}
.ctz-right-hd::before {
  display: none;
}
.ctz-right-hd-title {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 28px;
  color: var(--ctz-wh);
  letter-spacing: .08em;
  margin-bottom: 2px;
}
.ctz-right-hd-sub {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .25em;
  color: rgba(0,255,65,.3);
}

/* Client data summary */
.ctz-right-client {
  padding: 8px 28px;
  border-bottom: 1px solid var(--ctz-bd);
  background: rgba(0,255,65,.03);
}
.ctz-client-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 2px 0;
}
.ctz-client-label {
  font-family: 'Space Mono', monospace;
  font-size: 6.5px;
  letter-spacing: .18em;
  color: rgba(200,236,200,.35);
}
.ctz-client-val {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--ctz-wh);
  letter-spacing: .03em;
  text-align: right;
}
.ctz-client-bunker {
  color: var(--ctz-g);
}

/* Tipo/dia summary */
.ctz-right-ctx {
  padding: 8px 28px;
  border-bottom: 1px solid var(--ctz-bd);
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.ctz-ctx-pill {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .15em;
  padding: 5px 12px;
  border: 1px solid var(--ctz-bd);
  color: rgba(200,236,200,.4);
}
.ctz-ctx-pill.active {
  border-color: rgba(0,255,65,.3);
  color: rgba(0,255,65,.6);
  background: rgba(0,255,65,.04);
}

/* Lineas de seleccion — solo esta zona hace scroll */
.ctz-right-items {
  flex: 1;
  padding: 12px 28px;
  overflow-y: auto;
  min-height: 0;
}
.ctz-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 14px;
  text-align: center;
}
.ctz-empty-icon {
  font-size: 36px;
  opacity: .3;
  color: var(--ctz-g);
}
.ctz-empty-text {
  font-family: 'Space Mono', monospace;
  font-size: 8px;
  letter-spacing: .25em;
  color: rgba(200,236,200,.25);
}

.ctz-item-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0,255,65,.05);
}
.ctz-item-line:last-child {
  border-bottom: none;
}
.ctz-item-name {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: .05em;
  color: var(--ctz-wh);
  line-height: 1;
}
.ctz-item-detail {
  font-family: 'Space Mono', monospace;
  font-size: 7.5px;
  letter-spacing: .12em;
  color: rgba(200,236,200,.3);
  margin-top: 3px;
}
.ctz-item-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 22px;
  color: var(--ctz-g);
  letter-spacing: .02em;
  white-space: nowrap;
}

/* Subtotals */
.ctz-right-totals {
  padding: 10px 28px;
  border-top: 1px solid var(--ctz-bd);
  background: var(--ctz-dk);
}
.ctz-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 3px 0;
}
.ctz-total-row-label {
  font-family: 'Space Mono', monospace;
  font-size: 7.5px;
  letter-spacing: .18em;
  color: rgba(200,236,200,.4);
}
.ctz-total-row-val {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: rgba(200,236,200,.55);
  letter-spacing: .02em;
}
.ctz-total-sep {
  height: 1px;
  background: rgba(0,255,65,.1);
  margin: 4px 0;
}

/* Gran total */
.ctz-grand-total {
  padding: 14px 28px;
  background: rgba(0,255,65,.06);
  border-top: 2px solid rgba(0,255,65,.25);
  position: relative;
}
.ctz-gt-label {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .35em;
  color: rgba(0,255,65,.5);
  margin-bottom: 4px;
}
.ctz-gt-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: clamp(32px,4vw,44px);
  color: var(--ctz-g);
  line-height: 1;
  letter-spacing: .02em;
  text-shadow: 0 0 20px rgba(0,255,65,.35);
}
.ctz-gt-iva {
  font-family: 'Space Mono', monospace;
  font-size: 7px;
  letter-spacing: .15em;
  color: rgba(200,236,200,.3);
  margin-top: 2px;
}
.ctz-gt-iva-amount {
  font-family: 'Bebas Neue', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: rgba(0,255,65,.5);
  margin-top: 4px;
  display: block;
}

/* CTA */
.ctz-right-cta {
  padding: 12px 28px;
  border-top: 1px solid var(--ctz-bd);
}
.ctz-cta-btn {
  width: 100%;
  padding: 12px;
  background: var(--ctz-g);
  color: var(--ctz-bk);
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: .25em;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s;
  text-align: center;
  display: block;
  clip-path: none;
}
.ctz-cta-btn:hover {
  background: #00CC33;
  box-shadow: 0 0 24px rgba(0,255,65,.3);
}
.ctz-cta-btn:disabled {
  background: rgba(200,236,200,.1);
  color: rgba(200,236,200,.2);
  cursor: not-allowed;
  box-shadow: none;
}
.ctz-cta-note {
  font-family: 'Space Mono', monospace;
  font-size: 6.5px;
  letter-spacing: .12em;
  color: rgba(200,236,200,.2);
  text-align: center;
  margin-top: 6px;
  line-height: 1.5;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ctz-shell {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .ctz-right {
    position: static;
    height: auto;
    overflow: visible;
  }
  .ctz-right-items {
    overflow: visible;
  }
  .ctz-field-row {
    grid-template-columns: 1fr;
  }
  .ctz-left {
    padding: 28px 16px;
    border-right: none;
  }
  .ctz-right-cta,
  .ctz-right-totals,
  .ctz-grand-total,
  .ctz-right-items,
  .ctz-right-hd,
  .ctz-right-ctx,
  .ctz-right-client {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* Space cards — stack info y precio en vertical */
  .ctz-sc-inner {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
  .ctz-sc-check {
    grid-row: 1 / 3;
    padding: 16px 12px;
  }
  .ctz-sc-info {
    padding: 12px 14px 4px;
  }
  .ctz-sc-name {
    font-size: 20px;
  }
  .ctz-sc-meta {
    font-size: 7px;
    gap: 8px;
  }
  .ctz-sc-price {
    border-left: none;
    border-top: 1px solid var(--ctz-bd);
    text-align: left;
    padding: 4px 14px 12px;
    min-width: 0;
  }
  .ctz-sc-price-main {
    font-size: 22px;
    display: inline;
  }
  .ctz-sc-price-period {
    display: inline;
    margin-left: 8px;
  }

  /* Montaje en movil */
  .ctz-sc-montaje {
    padding: 10px 14px 14px 48px;
    flex-wrap: wrap;
    gap: 8px;
  }
  .ctz-montaje-label {
    font-size: 7px;
    width: 100%;
  }

  /* Tipo y dia botones */
  .ctz-tipo-grid,
  .ctz-day-grid {
    gap: 8px;
  }
  .ctz-tipo-btn {
    padding: 14px 14px;
  }
  .ctz-tipo-btn-name {
    font-size: 18px;
  }
  .ctz-day-btn {
    padding: 12px 14px;
  }
  .ctz-day-btn-name {
    font-size: 16px;
  }

  /* Panel derecho compacto en movil */
  .ctz-right-hd {
    padding: 14px 16px 10px;
  }
  .ctz-right-hd-title {
    font-size: 24px;
  }
  .ctz-gt-amount {
    font-size: clamp(28px, 8vw, 38px);
  }
  .ctz-cta-btn {
    padding: 14px;
    font-size: 9px;
  }
}

/* ── PRINT ── */
@page { margin: 0; size: auto; }
@media print {
  * { -webkit-print-color-adjust: exact; print-color-adjust: exact; color-adjust: exact; }
  html, body { margin: 0; padding: 0; background: var(--ctz-bk); }

  body::after,
  body::before { display: none; }
  .cotizador-page .sys-section::after { display: none; }
  .cotizador-page .sys-nav,
  .cotizador-page .mob-drawer,
  .cotizador-page .sys-grid-bg,
  .cotizador-page .scan-sweep,
  .cotizador-page .cur,
  .cotizador-page .cur-r,
  .cotizador-page .page-transition,
  .cotizador-page .page-header,
  .cotizador-page .sys-footer { display: none; }
  .cotizador-page::after { display: none; }
  .ctz-cta-btn { display: none; }
  .ctz-cta-note { display: none; }

  .ctz-shell {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .ctz-left { display: none; }
  .ctz-right {
    position: static;
    height: auto;
    min-height: auto;
    overflow: visible;
    background: var(--ctz-bk);
    border-left: none;
    display: block;
  }
  .ctz-right-items {
    overflow: visible;
  }

  .cotizador-page { background: var(--ctz-bk); }
  .cotizador-page .sys-section {
    background: var(--ctz-bk);
    padding: 0;
    overflow: visible;
  }

  /* Logo header */
  .ctz-right::before {
    content: '';
    display: block;
    width: 100%;
    padding: 24px 32px 16px;
    background:
      url('../img/logo-bunker.png') no-repeat 32px center / 36px auto,
      var(--ctz-dk);
    border-bottom: 2px solid var(--ctz-g);
    min-height: 46px;
  }
  .ctz-right-hd {
    background: var(--ctz-dk);
    border-bottom: 2px solid rgba(0,255,65,.3);
    padding: 20px 32px 14px;
  }
  .ctz-right-hd-title {
    font-size: 36px;
    color: var(--ctz-g);
    text-shadow: none;
    margin-bottom: 2px;
  }
  .ctz-right-hd-sub {
    font-size: 8.5px;
    color: rgba(0,255,65,.5);
    margin-top: 3px;
  }

  .ctz-right-client {
    display: block;
    background: var(--ctz-dk);
    border-bottom: 1px solid var(--ctz-bd);
    padding: 12px 32px;
  }
  .ctz-client-row { padding: 3px 0; }
  .ctz-client-label { font-size: 7px; color: rgba(0,255,65,.5); }
  .ctz-client-val { font-size: 13px; }
  .ctz-client-bunker { color: var(--ctz-g); }

  .ctz-right-ctx {
    background: var(--ctz-bk);
    border-bottom: 1px solid var(--ctz-bd);
    padding: 10px 32px;
  }
  .ctz-ctx-pill.active {
    border-color: rgba(0,255,65,.3);
    color: rgba(0,255,65,.6);
    background: rgba(0,255,65,.04);
  }

  .ctz-right-items {
    background: var(--ctz-bk);
    padding: 14px 32px;
    flex: none;
  }
  .ctz-item-line { border-bottom: 1px solid var(--ctz-bd); padding: 10px 0; }
  .ctz-item-name { font-size: 19px; }
  .ctz-item-detail { font-size: 7.5px; }
  .ctz-item-amount { font-size: 22px; }

  .ctz-right-totals {
    background: var(--ctz-dk);
    border-top: 1px solid var(--ctz-bd);
    padding: 12px 32px;
  }
  .ctz-total-row { padding: 5px 0; }
  .ctz-total-row-val { font-size: 22px; }
  .ctz-total-sep { margin: 4px 0; }

  .ctz-grand-total {
    background: rgba(0,255,65,.06);
    border-top: 2px solid rgba(0,255,65,.25);
    padding: 18px 32px;
  }
  .ctz-gt-label { margin-bottom: 3px; }
  .ctz-gt-amount { text-shadow: none; font-size: 44px; }
  .ctz-gt-iva { margin-top: 3px; }
  .ctz-gt-iva-amount { margin-top: 6px; font-size: 20px; }

  .ctz-right-cta {
    background: var(--ctz-dk);
    border-top: 1px solid var(--ctz-bd);
    padding: 14px 32px;
    margin-top: 0;
  }
  .ctz-right-cta::before {
    content: 'BUNKER CREATIVIDAD EMPRESARIAL SAPI SA DE CV';
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--ctz-g);
    letter-spacing: .15em;
    margin-bottom: 6px;
  }
  .ctz-right-cta::after {
    content: 'Av. de los Compositores s/n \B7  Bosque de Chapultepec 2\AA  Secc. \B7  CDMX  \B7   contacto@museomunet.com  \B7   museomunet.com  \B7   Precios + IVA \B7  Vigentes 2026';
    display: block;
    font-family: 'Space Mono', monospace;
    font-size: 7px;
    letter-spacing: .12em;
    color: rgba(200,236,200,.3);
    line-height: 1.7;
    margin-top: 4px;
  }

  .ctz-right-totals,
  .ctz-grand-total,
  .ctz-right-cta {
    break-inside: avoid;
  }

  /* Agrupar totales + gran total + footer para que no se separen entre páginas */
  .ctz-right-totals {
    break-before: auto;
    break-after: avoid;
  }
  .ctz-grand-total {
    break-before: avoid;
    break-after: avoid;
  }
  .ctz-right-cta {
    break-before: avoid;
  }

  /* Los items pueden partirse entre páginas sin problema */
  .ctz-right-items {
    break-inside: auto;
  }
  .ctz-item-line {
    break-inside: avoid;
  }
}
