  .container {
    max-width: 1200px;
  }
  
  .main-layout {
            display: grid;
            grid-template-columns: 1.4fr 1fr;
            gap: 40px;
            min-height: 100vh;
            margin-top: 50px;
            margin-bottom: 50px;
        }

        /* LEFT COLUMN - Text Content */
        .left-column {
            display: flex;
            flex-direction: column;
        }

        .flight-header {
            background: #7f7f7f;
            color: white;
            padding: 15px;
            border-radius: 3px;
            margin-bottom: 0px;
        }

        .flight-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 0px;
            margin-top: 0px;
        }

        .flight-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            margin-bottom: 10px;
            margin-top: 0px;
        }

        .flight-price {
            font-size: 1rem;
            font-weight: bold;
            margin: 0px 0 0px 0;
        }

        .price-per-seat {
            font-size: 1.5rem;
            opacity: 0.8;
            margin-bottom: 20px;
        }

        .location {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 10px 20px;
            border-radius: 25px;
            display: inline-block;
            font-size: 0.95rem;
        }

        .flight-info {
            background: white;
            padding: 30px;
            border-radius: 3px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex: 1;
        }

        .info-section {
            margin-bottom: 25px;
        }

        .info-section h3 {
            color: #1A1A1A;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }

        .highlights-list {
            margin: 15px 0;
            padding-left: 20px;
        }

        .highlights-list li {
            margin-bottom: 8px;
            color: #555;
        }

        /* RIGHT COLUMN - Images and Booking */
        .right-column {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .image-carousel {
            background: white;
            border-radius: 3px;
            overflow: hidden;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            position: relative;
            height: 400px;
            margin-bottom: 20px;
            border: 1px solid #ebebeb;
        }

        .carousel-container {
            position: relative;
            width: 100%;
            height: 100%;
            
        }

        .carousel-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }

        .carousel-slide.active {
            opacity: 1;
        }

        .carousel-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: background-color 0.3s;
            z-index: 10;
        }

        .carousel-nav:hover {
            background: rgba(0,0,0,0.7);
        }

        .carousel-nav.prev {
            left: 15px;
        }

        .carousel-nav.next {
            right: 15px;
        }

        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
        }

        .carousel-indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carousel-indicator.active {
            background: white;
        }

        .booking-section {
            background: white;
            padding: 15px;
            border-radius: 3px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            flex: 1;
        }

        .booking-title {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 25px;
            color: #1A1A1A;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            font-weight: bold;
            margin-bottom: 10px;
            color: #333;
        }

        .calendar-container {
            border: 1px solid 1px solid #d8d8d8;
            border-radius: 3px;
            padding: 15px;
            background: #ebebeb;
        }

        .calendar-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            padding-bottom: 10px;
            border-bottom: 1px solid #e9ecef;
        }

        .calendar-nav-btn {
            background: none;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            padding: 5px 10px;
            border-radius: 5px;
            transition: background-color 0.3s;
        }

        .calendar-nav-btn:hover {
            background-color: #e9ecef;
        }

        .calendar-month {
            font-weight: bold;
            font-size: 1.1rem;
        }

        .calendar-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 2px;
        }

        .calendar-day-header {
            text-align: center;
            font-weight: bold;
            padding: 10px 5px;
            font-size: 0.9rem;
            color: #666;
            border-bottom: 1px solid #e9ecef;
        }

        .calendar-day {
            text-align: center;
            padding: 10px;
            cursor: pointer;
            border-radius: 3px;
            transition: all 0.3s;
            font-size: 0.9rem;
            margin: 5px;
        }

        .calendar-day:hover {
            background-color: #e3f2fd;
        }

        .calendar-day.available {
            background-color: #949494;
            color: white;
        }

        .calendar-day.selected {
            background-color: #A70E13;
            color: white !important;
        }

        .calendar-day.disabled {
            color: #666;
            cursor: not-allowed;
        }

        .select-input {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 1rem;
            background: white;
            cursor: pointer;
            transition: border-color 0.3s;
        }

        .select-input:focus {
            outline: none;
            border-color: #1A1A1A;
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 10px;
        }

        .quantity-btn {
            width: 40px;
            height: 40px;
            border: 2px solid #e9ecef;
            background: white;
            border-radius: 50%;
            cursor: pointer;
            font-size: 1.2rem;
            font-weight: bold;
            transition: all 0.3s;
        }

        .quantity-btn:hover {
            border-color: #1A1A1A;
            color: #1A1A1A;
        }

        .quantity-display {
            font-size: 1.2rem;
            font-weight: bold;
            min-width: 30px;
            text-align: center;
        }

        .addons-section {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid #e9ecef;
        }

        .addon-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            margin-bottom: 10px;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            transition: border-color 0.3s;
        }

        .addon-item:hover {
            border-color: #1A1A1A;
        }

        .addon-checkbox {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .addon-info {
            flex: 1;
        }

        .addon-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .addon-description {
            font-size: 0.9rem;
            color: #666;
        }

        .addon-price {
            font-weight: bold;
            color: #1A1A1A;
        }

        .price-summary {
            margin-top: 30px;
            padding-top: 25px;
            border-top: 2px solid #e9ecef;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            padding: 5px 0;
        }

        .price-row.total {
            font-weight: bold;
            font-size: 1.2rem;
            border-top: 1px solid #e9ecef;
            padding-top: 15px;
            margin-top: 15px;
        }

        .book-button {
            width: auto;
            padding: 15px;
            background: #A70E13;
            color: white;
            border: none;
            border-radius: 3px;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            margin-top: 25px;
            transition: transform 0.3s;
            margin-left: auto;
            margin-right: auto;
        }

       

        .book-button:hover {
            transform: translateY(-2px);
            background: black !important;
            color: white !important;
        }

        #addonTotal {
            text-align: right;
        }

        @media (max-width: 1024px) {
            .main-layout {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .flight-title {
                font-size: 2rem;
            }

            .flight-price {
                font-size: 2.5rem;
            }

            .image-carousel {
                height: 300px;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 10px;
            }

            .flight-header {
                padding: 30px 20px;
            }

            .flight-info, .booking-section {
                padding: 20px;
            }

            .image-carousel {
                height: 250px;
            }
        }


    /* Add these styles to your checkout.css file */

.time-buttons-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 8px;
}

.time-button {
    padding: 12px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 3px;
    background-color: white;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.time-button:hover {
    border-color: #535353;
    background-color: #f8f9fa;
}

.time-button.selected {
    border-color: #A70E13;
    background-color: #A70E13;
    color: white;
}

.time-button:disabled {
    background-color: #f5f5f5;
    color: #999;
    cursor: not-allowed;
    border-color: #e5e5e5;
}

.time-button:disabled:hover {
    background-color: #f5f5f5;
    border-color: #e5e5e5;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
    .time-buttons-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .time-button {
        padding: 10px 12px;
        font-size: 13px;
    }
}

.seat-input-container {
    margin-top: 10px;
}

.seat-number-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    background: white;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.seat-number-input:focus {
    outline: none;
    border-color: #2a5298;
}

/* Hide number input arrows */
.seat-number-input::-webkit-outer-spin-button,
.seat-number-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.seat-number-input[type=number] {
    -moz-appearance: textfield;
}

 .review-widget {
            background-color: white;
            border: 1px solid #e0e0e0;
            border-radius: 3px;
            padding: 20px;
            max-width: 100%;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }

        .reviewer-avatar {
            width: 40px;
            height: 40px;
            background-color: #333;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 16px;
            margin-right: 12px;
        }

        .reviewer-info {
            flex: 1;
        }

        .reviewer-name {
            font-weight: bold;
            color: #333;
            font-size: 14px;
            margin-bottom: 2px;
        }

        .review-date {
            color: #666;
            font-size: 12px;
        }

        .stars {
            display: flex;
            margin-bottom: 12px;
        }

        .star {
            color: #ffd700;
            font-size: 18px;
            margin-right: 2px;
        }

        .review-text {
            color: #333;
            line-height: 1.5;
            font-size: 14px;
            margin-bottom: 12px;
        }

        .review-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid #f0f0f0;
        }

        .helpful-section {
            display: flex;
            align-items: center;
            color: #666;
            font-size: 12px;
        }

        .helpful-btn {
            background: none;
            border: 1px solid #ddd;
            padding: 4px 8px;
            border-radius: 4px;
            color: #666;
            font-size: 11px;
            cursor: pointer;
            margin-left: 8px;
            transition: all 0.2s;
        }

        .helpful-btn:hover {
            background-color: #f8f8f8;
            border-color: #999;
        }

        .verified-badge {
            background-color: #333;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 3px;
            font-weight: bold;
        }


    