/* =============================================
   ANNOUNCED PRICE STEPS 2026 — customer-facing
   Event page banner + modal, buy form, listings, basket.
   ============================================= */

:root {
    --pl-primary: #1c323a;
    --pl-accent: #e3ba2d;
    --pl-info: #319eca;
    --pl-info-light: #e0f2fe;
    --pl-warning-light: #fef3c7;
    --pl-warning-text: #78350f;
    --pl-border: #e2e8f0;
    --pl-muted: #64748b;
    --pl-light: #94a3b8;
    --pl-radius: 14px;
    --pl-radius-sm: 10px;
}

/* ---------- Event page banner ----------
   This is the advance disclosure. It is given real presence on the page because
   a price that rises is only fair if the customer was told before they chose. */
.price-ladder-banner {
    background: var(--pl-info-light);
    border: 1px solid rgba(49, 158, 202, 0.3);
    border-radius: var(--pl-radius);
    padding: 18px 22px;
    margin: 18px 0;
}

.price-ladder-banner .pl-mark {
    display: inline-flex; align-items: center; gap: 7px;
    font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; color: #075985; margin-bottom: 10px;
}

.price-ladder-banner .pl-lead {
    margin: 0 0 10px; font-size: 14px; line-height: 1.6; color: #0c4a6e;
}

.price-ladder-banner .pl-now {
    margin: 0 0 12px; font-size: 15px; color: var(--pl-primary);
}
.price-ladder-banner .pl-now strong { font-size: 18px; }
.price-ladder-banner .pl-step-name { color: var(--pl-muted); font-size: 13px; }

.price-ladder-banner .pl-see-all {
    background: transparent; border: 1px solid var(--pl-info);
    color: #075985; padding: 8px 16px; border-radius: 999px;
    font-size: 13px; font-weight: 600; cursor: pointer;
    transition: all 0.2s ease;
}
.price-ladder-banner .pl-see-all:hover { background: var(--pl-info); color: #fff; }

.price-ladder-banner .pl-stamp {
    margin: 10px 0 0; font-size: 11px; color: var(--pl-light);
}

/* ---------- The full-ladder modal ---------- */
.price-ladder-modal .modal-content { border-radius: var(--pl-radius); border: none; }
.price-ladder-modal .modal-title { font-size: 19px; font-weight: 700; color: var(--pl-primary); }
.price-ladder-modal .plm-intro { font-size: 14px; color: var(--pl-muted); line-height: 1.6; margin-bottom: 18px; }

.plm-table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.plm-table th {
    text-align: left; padding: 10px 12px 10px 0;
    font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--pl-light); font-weight: 700; border-bottom: 1px solid var(--pl-border);
}
.plm-table td { padding: 12px 12px 12px 0; border-bottom: 1px solid #f1f5f9; font-size: 14px; }
.plm-table .plm-price { font-weight: 700; color: var(--pl-primary); }

.plm-row.is-passed { opacity: 0.5; }
.plm-row.is-passed .plm-status { text-decoration: line-through; }
.plm-row.is-current { background: #f8fafc; }
.plm-row.is-current .plm-status strong { color: #15803d; }

.plm-promise {
    margin: 0 0 10px; padding: 12px 14px;
    background: var(--pl-warning-light); border-radius: var(--pl-radius-sm);
    font-size: 14px; color: var(--pl-warning-text);
}
.plm-stamp { font-size: 12px; color: var(--pl-light); margin: 0 0 12px; }
.plm-hold { font-size: 13px; color: var(--pl-muted); line-height: 1.6; margin: 0; }

/* ---------- Buy form ---------- */
.ticket-ladder {
    display: block; font-size: 12px; color: #b45309;
    font-weight: 600; margin-top: 3px;
}

/* ---------- Listing cards ---------- */
.show-price { margin: 6px 0 10px; }
.show-price .show-from { font-size: 15px; font-weight: 700; color: var(--pl-primary); }
.show-price .show-ladder-hint {
    display: block; font-size: 11px; color: var(--pl-muted); margin-top: 2px;
}

/* ---------- Basket ---------- */
.price-tier {
    display: block; font-size: 11px; color: var(--pl-muted); margin-top: 2px;
}
.price-held {
    display: block; font-size: 11px; color: #b45309; margin-top: 3px;
}

.price-held-banner {
    background: var(--pl-warning-light);
    border-left: 4px solid var(--pl-accent);
    border-radius: var(--pl-radius-sm);
    padding: 14px 18px;
    margin-bottom: 18px;
}
.price-held-banner p { margin: 0; font-size: 14px; line-height: 1.6; color: var(--pl-warning-text); }

@media (max-width: 620px) {
    .price-ladder-banner { padding: 16px; }
    .plm-table th:nth-child(3), .plm-table td:nth-child(3) { display: none; }
}
