.booking-redesign {
    --booking-border: #dbe4f0;
    --booking-shadow: 0 16px 40px rgba(12, 38, 73, 0.3);
    --booking-card-bg: #ffffff;
    --booking-muted-bg: #f6f9ff;
    --fare-panel-sticky-top: 90px;
}

.booking-redesign #bookingPayment {
    display: block;
}

.booking-redesign .card,
.booking-redesign .bg-light.shadow-md.rounded.p-3,
.booking-redesign .bg-light.shadow-md.rounded.p-3 .bg-light.shadow-md.rounded.p-3 {
    border: 1px solid var(--booking-border);
    border-radius: 16px !important;
    box-shadow: var(--booking-shadow) !important;
    background: var(--booking-card-bg) !important;
}

.booking-redesign .card-header {
    border: 0;
    border-radius: 16px 16px 0 0 !important;
    background: var(--bg-gradient);
    color: #fff;
    padding: 16px 20px;
}

.booking-redesign .trip-title .trip-place,
.booking-redesign .trip-title .date {
    color: #fff !important;
}

.booking-redesign .card-body {
    background: var(--booking-muted-bg);
    border-radius: 0 0 16px 16px !important;
    padding: 18px;
}

.booking-redesign .alert-info {
    border: 1px solid #bfdbff;
    background: #eaf3ff;
    color: #164a87;
    border-radius: 14px;
}

.booking-redesign .card.p-3 {
    border-radius: 16px !important;
    border: 1px solid var(--booking-border);
    background: #fff;
}

.booking-redesign .ui-input,
.booking-redesign .form-control,
.booking-redesign .custom-select {
    border: 1px solid #cdd9ea;
    border-radius: 12px !important;
    min-height: 46px;
}

.booking-redesign .form-control:focus,
.booking-redesign .custom-select:focus,
.booking-redesign .ui-input:focus {
    border-color: var(--famous-primary);
    box-shadow: 0 0 0 3px rgba(25, 100, 185, 0.12);
}

.booking-redesign #paymentSelectionSection>div {
    background: #f5f9ff !important;
    border: 1px solid #d7e4f8;
    border-radius: 14px !important;
}

.booking-redesign #proceedPayment {
    margin-top: 14px;
    border-radius: 12px;
    min-height: 48px;
    font-weight: 700;
}

.booking-redesign .payments-types {
    gap: 8px !important;
}

.booking-redesign .fare-panel-mobilelike {
    background: var(--bg-gradient) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    box-shadow: 0 12px 28px rgba(17, 52, 95, 0.5) !important;
    color: #fff !important;
}

.booking-redesign .fare-panel-shell {
    box-shadow: 0 18px 34px rgba(9, 31, 67, 0.5) !important;
}

.booking-redesign .fare-panel-mobilelike h3,
.booking-redesign .fare-panel-mobilelike li,
.booking-redesign .fare-panel-mobilelike label {
    color: #fff !important;
}

.booking-redesign .fare-panel-total {
    background: #f1f6ff !important;
    border-radius: 12px !important;
    color: var(--text-high) !important;
}

.booking-redesign .fare-panel-payment-box {
    border: 1px solid #d4e1f3 !important;
    border-radius: 12px !important;
    background: #f7faff !important;
}

.booking-redesign .fare-panel-apply-btn {
    background: #fff !important;
    color: var(--famous-primary) !important;
    border: 0;
    border-radius: 10px !important;
}

.booking-redesign .fare-panel-proceed {
    min-height: 48px;
    border-radius: 999px !important;
    font-weight: 700;
    background: #fff !important;
    color: var(--famous-primary) !important;
    border: 0 !important;
    transition: all 0.3s ease-in !important;
}

.booking-redesign .fare-panel-proceed:hover {
    transform: scale(1.02) !important;
}

.booking-redesign .fare-panel-proceed:active {
    transform: scale(0.98) !important;
}

.payment-img {
    transition: filter 0.3s, border-color 0.3s;
    cursor: pointer;
    padding: 8px;
    border: 2px solid #d5e2f4;
    border-radius: 12px !important;
    background: #fff;
}

.grayscale {
    filter: grayscale(100%);
}

.selected-payment {
    filter: none !important;
    border-color: var(--famous-primary) !important;
    box-shadow: 0 8px 20px rgba(25, 100, 185, 0.18);
}

.payments-types {
    list-style: none;
    padding-left: 0;
}

.payments-types li {
    display: inline-block;
}

@media (min-width: 992px) {
    .booking-redesign .row {
        overflow: visible !important;
    }

    .booking-redesign .fare-panel-sticky-col {
        position: -webkit-sticky !important;
        position: sticky !important;
        top: var(--fare-panel-sticky-top) !important;
        height: fit-content !important;
        align-self: flex-start !important;
        overflow: visible !important;
        z-index: 10 !important;
    }


}