.bahnhoefle-order-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bahnhoefle-progress {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.bahnhoefle-progress::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    right: 0;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.bahnhoefle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
}

.bahnhoefle-step.active .step-number,
.bahnhoefle-step.completed .step-number {
    background: #611026;
    color: white;
}

.step-label {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

.bahnhoefle-step.active .step-label {
    color: #611026;
    font-weight: 600;
}

.bahnhoefle-form-step {
    display: none;
}

.bahnhoefle-form-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.bahnhoefle-form-step h2 {
    color: #611026;
    margin-bottom: 30px;
    font-size: 28px;
}

.bahnhoefle-category {
    margin-bottom: 40px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.category-title {
    color: #611026;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #F08050;
    font-size: 22px;
}

.bahnhoefle-dish-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.bahnhoefle-dish-item:hover {
    background: #fafafa;
}

.bahnhoefle-dish-item:last-child {
    border-bottom: none;
}

.dish-info {
    flex: 1;
}

.dish-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
}

.dish-number {
    background: #F8BB95;
    color: #611026;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.dish-name {
    font-size: 16px;
    font-weight: 500;
    color: #333;
}

.dish-details {
    font-size: 13px;
    color: #666;
    margin-top: 5px;
}

.dish-size {
    margin-right: 10px;
}

.dish-zusatz {
    font-style: italic;
}

.dish-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dish-price {
    font-size: 18px;
    font-weight: 600;
    color: #611026;
    min-width: 80px;
    text-align: right;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 5px;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #611026;
    color: white;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #F08050;
    transform: scale(1.1);
}

.dish-quantity {
    width: 50px;
    text-align: center;
    border: none;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    color: #611026;
}

.bahnhoefle-cart-summary {
    position: sticky;
    bottom: 20px;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.15);
    margin-top: 30px;
}

.cart-summary-content {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 16px;
}

.discount-row {
    color: #F08050;
}

.total-row {
    border-top: 2px solid #f0f0f0;
    padding-top: 15px;
    margin-top: 10px;
    font-size: 20px;
}

.bahnhoefle-btn {
    background: #611026;
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 0 auto;
}

.bahnhoefle-btn:hover:not(:disabled) {
    background: #F08050;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(240, 128, 80, 0.4);
}

.bahnhoefle-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.bahnhoefle-btn.secondary {
    background: white;
    color: #611026;
    border: 2px solid #611026;
}

.bahnhoefle-btn.secondary:hover {
    background: #611026;
    color: white;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: #611026;
    font-weight: 500;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #F08050;
}

.form-row-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.checkbox-row {
    margin-top: 30px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.button-group {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.button-group .bahnhoefle-btn {
    flex: 1;
}

.confirmation-section {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.confirmation-section h3 {
    color: #611026;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F8BB95;
}

.order-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.order-item:last-child {
    border-bottom: none;
}

.summary-totals {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.success-message {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin: 0 auto 20px;
}

.success-message h2 {
    color: #611026;
    margin-bottom: 10px;
}

.success-message p {
    color: #666;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .bahnhoefle-dish-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .dish-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .form-row-group {
        grid-template-columns: 1fr;
    }
    
    .button-group {
        flex-direction: column;
    }
    
    .bahnhoefle-progress {
        font-size: 12px;
    }
    
    .step-label {
        display: none;
    }
}
