.booking-sidebar-new {
    padding: 0 !important;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.booking-item-new {
    padding: 0 !important;
}

.booking-sidebar-header {
    background-color: #0b3b7b;
    color: white;
    padding: 10px 20px;
}

.booking-price-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.booking-price-value {
    color: white;
    margin: 0;
    font-weight: 700;
    font-size: 28px;
}

.booking-price-unit {
    font-size: 0.9rem;
    margin-left: 5px;
    color: rgba(255, 255, 255, 0.8);
}

.booking-header-divider {
    border-color: rgba(255, 255, 255, 0.2);
    margin: 5px 0;
}

.booking-tour-code-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.booking-tour-code-value {
    font-size: 0.95rem;
}

.booking-sidebar-body {
    padding: 20px;
    background: white;
}

.booking-section-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #666;
    margin-bottom: .5rem;
    text-transform: uppercase;
}

.booking-date-btn {
    border-radius: 8px;
    min-width: 65px;
}

.booking-date-btn.active {
    background-color: #0d6efd;
    color: white;
}

.booking-date-value {
    font-weight: 700;
    font-size: 0.9rem;
}

.booking-date-price {
    font-size: 0.75rem;
}

.booking-qty-label {
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-qty-price {
    font-size: 0.8rem;
    color: #0d6efd;
    font-weight: 500;
}

.booking-qty-btn {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.booking-qty-input {
    font-weight: 600;
    padding: 0;
}

.booking-summary-box {
    background-color: #f8f9fa;
}

.booking-summary-list {
    font-size: 0.9rem;
    color: #555;
}

.booking-summary-item-price {
    color: #1a1a1a;
}

.booking-summary-divider {
    border-color: #e9ecef;
}

.booking-total-label {
    font-weight: 700;
    font-size: 1.05rem;
}

.booking-total-value {
    color: #0d6efd;
    font-size: 1.15rem;
}

.booking-action-btn {
    border-radius: 8px;
    padding: 12px;
    font-weight: 600;
}

.booking-hotline-box {
    color: #0d6efd;
}

.booking-hotline-number {
    font-size: 1.1rem;
}

/* Mobile popup styles */
@media (max-width: 991px) {
    .booking-sidebar-new {
        position: fixed;
        bottom: -100%;
        left: 0;
        right: 0;
        z-index: 1045;
        transition: bottom 0.3s ease-in-out;
        max-height: 85vh;
        overflow-y: auto;
        border-radius: 20px 20px 0 0 !important;
        background: #fff;
    }
    .booking-sidebar-new.active {
        bottom: 0;
    }
    .mobile-booking-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1040;
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    .mobile-booking-overlay.active {
        display: block;
        opacity: 1;
    }
    .mobile-bottom-booking-bar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #0b3b7b;
        z-index: 1030;
        display: flex;
        align-items: center;
        box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.15);
        padding: 10px 15px;
    }
    .mbb-price-col {
        flex: 1;
        color: #fff;
    }
    .mbb-price-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        display: block;
        opacity: 0.8;
        line-height: 1;
        margin-bottom: 3px;
    }
    .mbb-price-value {
        font-size: 1.1rem;
        font-weight: 700;
        line-height: 1;
    }
    .mbb-price-value small {
        font-size: 0.75rem;
        font-weight: normal;
        opacity: 0.8;
    }
    .mbb-actions-col {
        display: flex;
        gap: 8px;
    }
    .mbb-btn {
        padding: 8px 12px;
        font-weight: 600;
        font-size: 0.9rem;
        border-radius: 6px;
        white-space: nowrap;
        margin: 0;
    }
    .mbb-book-btn {
        background: #0d6efd;
        border-color: #0d6efd;
    }
    .mbb-consult-btn {
        background: #fff;
        border-color: #fff;
        color: #0b3b7b !important;
    }
    .booking-sidebar-header {
        position: relative;
    }
    .mobile-booking-close {
        position: absolute;
        top: 15px;
        right: 15px;
        color: white;
        background: transparent;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
}
@media (min-width: 992px) {
    .mobile-booking-overlay,
    .mobile-floating-booking-btn,
    .mobile-booking-close {
        display: none !important;
    }
}
