/* Modern Booking Modal Styles */
.booking-modal .modal-dialog {
    max-width: 900px;
}

.booking-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.booking-modal .modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px 20px 0 0;
    padding: 30px;
    border: none;
}

.booking-modal .modal-header h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 8px;
}

.booking-modal .modal-header p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-size: 14px;
}

.booking-modal .close-btn {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-modal .close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Price Display Section */
.price-display-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    border: 2px solid #e0e6ed;
}

.price-display-section h5 {
    font-size: 16px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-display-section h5 i {
    color: #667eea;
    font-size: 20px;
}

.price-breakdown {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.price-item {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.price-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.price-item .label {
    font-size: 13px;
    color: #718096;
    margin-bottom: 8px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-item .amount {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-item .amount .currency {
    font-size: 16px;
    color: #667eea;
}

.price-item .amount .number {
    color: #667eea;
}

.price-item.special {
    border: 2px solid #48bb78;
    position: relative;
    overflow: hidden;
}

.price-item.special::before {
    content: 'Giá đặc biệt';
    position: absolute;
    top: 8px;
    right: -35px;
    background: #48bb78;
    color: white;
    padding: 2px 40px;
    font-size: 11px;
    transform: rotate(45deg);
    font-weight: 600;
}

.total-price-item {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #f0fff4 0%, #d7f9e4 100%);
    border: 2px dashed #48bb78;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price-item .label {
    margin-bottom: 0;
    font-size: 15px;
    color: #2d3748;
    font-weight: 700;
}

.total-price-item .amount {
    font-size: 32px;
}

.total-price-item .amount .number {
    color: #2f855a;
}

.price-loading {
    text-align: center;
    padding: 20px;
    color: #718096;
}

.price-loading i {
    font-size: 24px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Enhanced Calendar Styles */
.booking-modal .calendar-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
}

.booking-modal .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e0e6ed;
}

.booking-modal .calendar-header h6 {
    font-weight: 700;
    color: #2d3748;
    margin: 0;
}

.booking-modal .calendar-header button {
    background: #667eea;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-modal .calendar-header button:hover {
    background: #764ba2;
    transform: scale(1.1);
}

.booking-modal .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-bottom: 10px;
}

.booking-modal .day-name {
    text-align: center;
    font-weight: 600;
    color: #667eea;
    font-size: 13px;
    padding: 8px 0;
}

.booking-modal .calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.booking-modal .calendar-date {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.booking-modal .calendar-date:hover:not(.disabled) {
    background: #edf2f7;
    transform: scale(1.05);
}

.booking-modal .calendar-date.selected {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-weight: 700;
}

.booking-modal .calendar-date.today {
    border: 2px solid #667eea;
}

.booking-modal .calendar-date.disabled {
    color: #cbd5e0;
    cursor: not-allowed;
    pointer-events: none;
}

/* Enhanced Form Fields */
.booking-modal .single-field {
    position: relative;
}

.booking-modal .single-field label {
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    display: block;
    font-size: 14px;
}

.booking-modal .custom-select-dropdown {
    background: white;
    border: 2px solid #e0e6ed;
    border-radius: 12px;
    padding: 15px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.booking-modal .custom-select-dropdown:hover {
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.booking-modal .custom-select-dropdown h6 {
    margin: 0;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.booking-modal .custom-select-dropdown span {
    font-size: 13px;
    color: #718096;
}

/* Guest Counter */
.booking-modal .guest-count {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-top: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-modal .guest-count .single-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #e0e6ed;
}

.booking-modal .guest-count .single-item:last-child {
    border-bottom: none;
}

.booking-modal .guest-count .title h6 {
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 4px 0;
}

.booking-modal .guest-count .title span {
    font-size: 12px;
    color: #718096;
}

.booking-modal .quantity-counter {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f7fafc;
    border-radius: 10px;
    padding: 5px;
}

.booking-modal .quantity-counter a {
    width: 35px;
    height: 35px;
    background: #4a5568;
    /* Darker background for contrast */
    color: #ffffff !important;
    /* Force white icon */
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.booking-modal .quantity-counter a i {
    color: #ffffff !important;
    font-size: 14px;
}

.booking-modal .quantity-counter a:hover {
    background: #2d3748;
    transform: scale(1.1);
    color: #ffffff !important;
}

.booking-modal .quantity-counter input {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-weight: 700;
    color: #2d3748;
    font-size: 16px;
}

/* Book Now Button */
.booking-modal .btn-area .primary-btn1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    padding: 18px 50px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.booking-modal .btn-area .primary-btn1:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}