/* ═══════════════════════════════════════════
   Booking Card – Dark admission pricing card
   ═══════════════════════════════════════════ */

.c-booking-card {
    background-color: #2c2416;
    border-radius: 4px;
    padding: 32px 48px;
}

/* ─── Header ─── */

.c-booking-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.c-booking-card__icon {
    color: #b8976c;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    font-size: 24px;
    line-height: 1;
}

.c-booking-card__icon svg {
    width: 24px;
    height: 24px;
}

.c-booking-card .c-booking-card__title {
    font-size: 24px;
    line-height: 1.2;
    margin: 0;
    color: #f4f0e8;
}

/* ─── Price Rows ─── */

.c-booking-card__rows {
    display: flex;
    flex-direction: column;
}

.c-booking-card__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(244, 240, 232, 0.2);
}

.c-booking-card__label {
    font-size: 1rem;
    color: #faf8f5cc;
    max-width: 50%;
}

.c-booking-card .c-booking-card__price {
    font-size: 1.125rem;
    color: #b8976c;
    line-height: 1;
    text-align: right;
    max-width: 50%;
}

/* ─── Button ─── */

.c-booking-card .c-booking-card__button {
    display: flex;
    gap: .5rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 32px;
    padding: 14px 28px;
    background-color: #7799bb;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
    transition: opacity 0.25s ease;
}

.c-booking-card .c-booking-card__button svg {
    width: 16px;
    height: 16px;
}


.c-booking-card__button:hover {
    opacity: 0.9;
}

.c-booking-card__button--disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
}

/* ─── Footer ─── */

.c-booking-card__footer {
    font-size: 12px;
    color: rgba(244, 240, 232, 0.5);
    text-align: center;
    margin: 24px 0 0;
}

/* ─── Disclaimer ─── */

.c-booking-card__disclaimer {
    font-size: 11px;
    line-height: 1.625;
    color: #faf8f580;
    margin: 1rem 0 0;
}

/* ─── Responsive ─── */

@media (max-width: 767px) {
    .c-booking-card {
        padding: 24px;
    }
}
