.chef-booking-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
}

/* Progress Bar */
.booking-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 8px;
    background: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #ff8c61);
    transition: width 0.3s ease;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.progress-step {
    flex: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
    font-weight: 600;
    color: #666;
    transition: all 0.3s;
    border: 2px solid #e0e0e0;
}

.progress-step.completed {
    background: #4caf50;
    color: white;
}

.progress-step.active {
    background: #ff6b35;
    color: white;
    transform: scale(1.1);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-step h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
}

.step-intro {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    font-size: 15px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.form-group input.error,
.form-group select.error {
    border-color: #f44336;
}

.hint {
    display: block;
    margin-top: 8px;
    font-size: 13px;
    color: #666;
}

/* Button Groups */
.button-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
}

.option-btn {
    padding: 15px 20px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
}

.option-btn:hover {
    border-color: #ff6b35;
    background: #fff5f2;
}

.option-btn.active {
    border-color: #ff6b35;
    background: #ff6b35;
    color: white;
}

/* Menu Cards */
.menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.menu-card {
    padding: 25px;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.menu-card:hover {
    border-color: #ff6b35;
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.menu-card.active {
    border-color: #ff6b35;
    background: #fff5f2;
}

.menu-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.menu-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
    min-height: 40px;
}

.menu-price {
    font-size: 16px;
    color: #ff6b35;
}

.menu-price strong {
    font-size: 20px;
}

/* Wine Selection */
.wine-section {
    margin-bottom: 30px;
}

.wine-section h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

.wine-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wine-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 8px;
}

.wine-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.wine-price {
    font-size: 13px;
    color: #666;
}

.wine-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wine-qty-input {
    width: 70px !important;
    padding: 8px !important;
    text-align: center;
}

.qty-label {
    font-size: 13px;
    color: #666;
}

/* Location Suggestions */
.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 2px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.suggestions-dropdown.show {
    display: block;
}

.suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    transition: background 0.2s;
}

.suggestion-item:hover {
    background: #fff5f2;
}

/* Checkbox Labels */
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* Warning and Info Boxes */
.warning-box {
    padding: 15px;
    background: #fff3cd;
    border: 1px solid #ffca2c;
    border-radius: 8px;
    color: #856404;
    margin-top: 15px;
}

.info-box {
    padding: 15px;
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    border-radius: 8px;
    color: #0c5460;
    margin-bottom: 20px;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #e0e0e0;
}

.btn {
    padding: 15px 40px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #ff5722;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.btn-success {
    background: #4caf50;
    color: white;
    flex: 1;
}

.btn-success:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(76, 175, 80, 0.3);
}

/* Success Message */
.success-message {
    text-align: center;
    padding: 60px 30px;
}

.success-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-message h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 20px;
}

.success-message p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loading-overlay p {
    color: white;
    margin-top: 20px;
    font-size: 18px;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-cards {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        grid-template-columns: 1fr;
    }
    
    .wine-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .progress-steps {
        overflow-x: auto;
    }
}