/* General styling remains the same */
body {
    font-family: 'Roboto', sans-serif;
    background-color: #e7e7e7;
    color: #333;
}

.text-gold {
    color: #FFD700;
}

footer {
    background-color: #222;
}

/* Order basket Styling */
:root {
    --primary-color: #FFD700;
}

.order-type-btn {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background-color: white;
    transition: all 0.3s ease;
}

.order-type-btn.active {
    background-color: var(--primary-color);
    color: #000;
}

.card {
    border: none;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background-color: white;
    border-bottom: 2px solid #f0f0f0;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
}

.btn-primary:hover {
    background-color: #e6a600;
    border-color: #e6a600;
}

.btn-primary:disabled {
    background-color: #ccc;
    border-color: #ccc;
    color: #000;
}

.order-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0;
}

.remove-item {
    color: #dc3545;
    cursor: pointer;
}

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

.title-header {
    padding-top: 90px;
    padding-bottom: 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .title-header {
        padding-top: 90px;
        padding-bottom: 5px;
    }
}

.form-group {
    margin-bottom: 1rem;
}

.required {
    color: red;
}