/* ── Booking Detail page ─────────────────────────────────────────────────── */

/* Loading / not-found states */
.bd-loading {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
}

.bd-not-found {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 60vh;
    text-align: center;
}

.bd-nf-icon {
    font-size: 5rem !important;
    color: var(--antologa-light-gray);
}

.bd-nf-text {
    color: var(--antologa-gray);
}

/* Page wrapper */
.bd-page {
    padding: 2rem 0 5rem;
}

/* Back button row */
.bd-back-row {
    margin-bottom: 1.2rem;
}

/* Status header */
.bd-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.bd-header__left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.bd-header__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--antologa-dark);
    line-height: 1.25;
}

.bd-header__meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--antologa-gray);
    font-size: 1.2rem;
    flex-wrap: wrap;
}

.bd-ref {
    font-family: monospace;
    font-weight: 600;
    color: var(--antologa-secondary);
}

.bd-dot { color: var(--antologa-light-gray); }

/* Two-column layout */
.bd-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* ── Cards ──────────────────────────────────────────────────────────────── */
.bd-card {
    border: 1px solid var(--antologa-light-gray) !important;
    border-radius: 1.2rem !important;
    padding: 1.8rem !important;
    margin-bottom: 1.5rem;
    background: var(--antologa-white) !important;
}

.bd-card--cancelled {
    border-color: #FFCDD2 !important;
    background: #FFF8F8 !important;
}

.bd-card__label {
    font-size: 1.05rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--antologa-gray);
    margin-bottom: 1rem;
}

.bd-card__title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--antologa-dark);
    margin-bottom: 0.75rem !important;
}

/* Hero image */
.bd-hero {
    border-radius: 1.2rem;
    overflow: hidden;
    height: 260px;
    margin-bottom: 1.5rem;
}

.bd-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Meta rows */
.bd-meta-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--antologa-gray);
    font-size: 1.3rem;
    margin-top: 0.5rem;
}

.bd-meta-row--top { margin-top: 1.2rem; }

.bd-meta-icon {
    font-size: 1.6rem !important;
    color: var(--antologa-primary) !important;
    flex-shrink: 0;
}

/* Dates */
.bd-dates-row {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bd-date-col {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    flex: 1;
}

.bd-date-lbl {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--antologa-gray);
}

.bd-date-val {
    font-family: 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--antologa-dark);
}

.bd-date-sub {
    font-size: 1.15rem;
    color: var(--antologa-gray);
}

.bd-arrow {
    font-size: 1.6rem !important;
    color: var(--antologa-gray) !important;
    flex-shrink: 0;
}

/* Price breakdown */
.bd-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.3rem;
    color: var(--antologa-dark);
    padding: 0.4rem 0;
}

.bd-price-row--total {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--antologa-primary);
    padding-top: 0.8rem;
}

.bd-price-divider {
    border-top: 1px solid var(--antologa-light-gray);
    margin: 0.5rem 0;
}

/* Body text (policy, special requests) */
.bd-body-text {
    color: var(--antologa-gray);
    line-height: 1.65;
}

/* ── Ticket ──────────────────────────────────────────────────────────────── */
.bd-ticket {
    text-align: center;
}

.bd-ticket__number {
    font-family: monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--antologa-dark);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

.bd-ticket__qr {
    display: flex;
    justify-content: center;
    padding: 1rem;
    background: #F8F8F8;
    border-radius: 0.8rem;
    margin-bottom: 1rem;
}

.bd-ticket__valid {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2E7D32;
    background: #E8F5E9;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    display: inline-block;
}

.bd-ticket__used {
    font-size: 1.2rem;
    color: var(--antologa-gray);
}

/* ── Responsive ──────────────────────────────────────────────────────────── */
@media (max-width: 960px) {
    .bd-layout {
        grid-template-columns: 1fr;
    }

    .bd-sidebar {
        order: -1;
    }
}

@media (max-width: 600px) {
    .bd-page { padding: 1.2rem 0 6rem; }

    .bd-hero { height: 180px; border-radius: 0.8rem; }

    .bd-dates-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .bd-arrow { display: none; }

    .bd-header { flex-direction: column; }
}
