/* Wizard Container */
#booking-wizard {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

/* Steps Progress */
.wizard-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0 10px;
}

.progress-step {
    width: 100%;
    height: 4px;
    background: #eee;
    margin-right: 5px;
    border-radius: 2px;
    position: relative;
}

.progress-step.active {
    background: var(--color-primary);
}

/* Step Content Transitions */
.step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Step 1: Dates */
.date-selector-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.date-input-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    text-align: center;
}

.wizard-input {
    width: 100%;
    padding: 15px;
    border: 2px solid #eee;
    border-radius: 12px;
    font-size: 1.1rem;
    text-align: center;
    transition: all 0.3s;
}

.wizard-input:focus {
    border-color: var(--color-primary);
    outline: none;
}

/* Step 2: Guests */
.guest-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
}

.btn-stepper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #ddd;
    background: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-stepper:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.guest-display {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    width: 80px;
    text-align: center;
}

/* Step 3: Smart Options */
.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.option-card {
    border: 2px solid #eee;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.option-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.option-card.selected {
    border-color: var(--color-primary);
    background: #fffdf5; /* Light gold tint */
}

.option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.option-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 10px 0;
}

.option-details ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
    font-size: 0.9rem;
    color: #666;
}

.option-details li {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Step 4: Meal Plan */
.meal-toggle-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.meal-card {
    display: flex;
    align-items: center;
    padding: 20px;
    border: 2px solid #eee;
    border-radius: 12px;
    cursor: pointer;
}

.meal-card.selected {
    border-color: var(--color-success);
    background: #f0fff4;
}

.radio-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    margin-right: 15px;
    position: relative;
}

.meal-card.selected .radio-circle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 12px;
    height: 12px;
    background: var(--color-success);
    border-radius: 50%;
}

/* Step 6: Ticket */
.ticket-container {
    background: #f8f9fa;
    border: 1px dashed #ccc;
    border-radius: 12px;
    padding: 25px;
    margin: 20px 0;
}

.ticket-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 1rem;
}

.ticket-total {
    border-top: 2px solid #ddd;
    margin-top: 15px;
    padding-top: 15px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--color-primary);
}

/* Navigation Buttons */
.wizard-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.btn-back {
    background: transparent;
    color: #666;
    border: none;
    font-weight: 600;
}

.btn-next {
    background: var(--color-primary);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    border: none;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.btn-next:disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 600px) {
    /* Step 1 Optimizations */
    #step-1 h3 {
        display: none;
    }

    .date-selector-container {
        flex-direction: row; /* Keep side-by-side */
        gap: 0;
        border: 1px solid #ccc;
        border-radius: 12px;
        overflow: hidden;
        margin: 20px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }

    .date-input-group {
        flex: 1;
        position: relative;
        border-right: 1px solid #eee;
        padding: 5px;
        background: #fdfdfd;
    }

    .date-input-group:last-child {
        border-right: none;
    }

    .date-input-group label {
        font-size: 0.7rem;
        margin: 0;
        color: #888;
        position: absolute;
        top: 5px;
        left: 0;
        width: 100%;
        pointer-events: none;
    }

    .wizard-input {
        border: none;
        background: transparent;
        padding: 20px 5px 5px 5px; /* Space for label */
        border-radius: 0;
        font-size: 0.95rem;
        height: 60px;
    }
    
    .wizard-input:focus {
        background: #fff;
    }
    
    /* Other Steps */
    .options-grid {
        grid-template-columns: 1fr;
    }
}
