* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #fee2e2 0%, #972a26 50%, #8d1313 100%);
    min-height: 100vh;
}

/* Navigation */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #dc2626;
    background: transparent;
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #dc2626;
    color: white;
}

.nav-btn.active {
    background: #dc2626;
    color: white;
}

/* Nav butonunla uyumlu dropdown */
.nav-btn.dropdown-toggle::after {
    margin-left: 0.5rem;
    /* küçük ok ile araya boşluk */
    vertical-align: middle;
}

/* Dropdown menü tasarımı */
.dropdown-menu {
    border-radius: 8px;
    border: 2px solid #dc2626;
    padding: 0.25rem 0;
    min-width: 120px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #dc2626;
    color: white;
}



/* Pages */
.page {
    display: none;
}

.page.active {
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* Header */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.restaurant-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.restaurant-description {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #dc2626;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    padding: 0.50rem 0.50rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    max-height: 40px;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-outline {
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.btn-outline:hover {
    background: #fecaca;
}

.btn-success {
    background: #059669;
    color: white;
}

.btn-success:hover {
    background: #047857;
}

.call-waiter {
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.cart-btn {
    position: relative;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-badge.hidden {
    display: none;
}

/* Category Filters */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.25rem 0.25rem;
    border: 2px solid #d1d5db;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.filter-btn.active {
    background: #1f2937;
    color: white;
    border-color: #1f2937;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    position: relative;
}

.product-badges {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.badge {
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-popular {
    background: #dc2626;
    color: white;
}

.badge-unavailable {
    background: #dc2626;
    color: white;
}

.product-info {
    padding: 1.25rem;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.75rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.product-price {
    font-size: 1.125rem;
    font-weight: 700;
    color: #dc2626;
}

.product-description {
    color: #6b7280;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.product-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid #d1d5db;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.quantity-display {
    font-weight: 600;
    min-width: 32px;
    text-align: center;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.cart-close {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: #6b7280;
    padding: 0.5rem;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #6b7280;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-empty {
    text-align: center;
    padding: 3rem 1rem;
    color: #6b7280;
}

.cart-summary {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-total {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.cart-summary .btn-container {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.btn-container .btn {
    width: 50%;
    justify-content: center;
}

/*Scroll-to-top styles*/
#scroll-top {
    position: fixed;
    right: 1rem;
    bottom: 4rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 998;
}

#scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.14);
}

/* smaller on mobile */
/* @media (max-width:480px) {
    #scroll-top {
        right: .6rem;
        bottom: 5rem;
        width: 40px;
        height: 40px
    }
} */


/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Toast */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 3000;
}

.toast {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid #10b981;
}

.toast-error {
    border-left: 4px solid #ef4444;
}

.toast-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.toast-description {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Utilities */
.hidden {
    display: none;
}

/* =================================================================
   GENEL STİLLER VE SIFIRLAMA (RESET)
   ================================================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #1f2937;
    background: linear-gradient(135deg, #fee2e2 0%, #972a26 50%, #8d1313 100%);
    min-height: 100vh;
}

/* =================================================================
   NAVİGASYON
   ================================================================= */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-btn {
    padding: 0.75rem 1.5rem;
    border: 2px solid #dc2626;
    background: transparent;
    color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #dc2626;
    color: white;
}

.nav-btn.active {
    background: #dc2626;
    color: white;
}

.nav-btn.dropdown-toggle::after {
    margin-left: 0.5rem;
    vertical-align: middle;
}

.dropdown-menu {
    border-radius: 8px;
    border: 2px solid #dc2626;
    padding: 0.25rem 0;
    min-width: 120px;
}

.dropdown-item {
    padding: 0.5rem 1rem;
    color: #dc2626;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: #dc2626;
    color: white;
}

/* =================================================================
   SAYFA VE KONTEYNER YAPISI
   ================================================================= */
.page {
    display: none;
}

.page.active {
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

/* =================================================================
   HEADER (BAŞLIK ALANI)
   ================================================================= */
.header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
}

.restaurant-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.restaurant-description {
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.9rem;
}

.contact-item i {
    width: 16px;
    color: #dc2626;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* =================================================================
   GENEL DÜĞME STİLLERİ
   ================================================================= */
.btn {
    padding: 0.50rem 0.50rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    max-height: 40px;
}

.btn-primary {
    background: #dc2626;
    color: white;
}

.btn-primary:hover {
    background: #b91c1c;
    transform: translateY(-2px);
}

.btn-outline {
    background: #fee2e2;
    color: #dc2626;
    border: 2px solid #fecaca;
}

.btn-outline:hover {
    background: #fecaca;
}

.btn-success {
    background: #059669;
    color: white;
}

.btn-success:hover {
    background: #047857;
}

/* =================================================================
   MENÜ (KATEGORİ VE ÜRÜNLER)
   ================================================================= */
.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.filter-btn {
    padding: 0.25rem 0.25rem;
    border: 2px solid #d1d5db;
    background: white;
    color: #6b7280;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover {
    border-color: #dc2626;
    color: #dc2626;
}

.filter-btn.active {
    background: #1f2937;
    color: white;
    border-color: #1f2937;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* =================================================================
   SADECE SOHBET (CHAT) SİSTEMİ İÇİN GEREKLİ STİLLER
   ================================================================= */

/* Sohbeti açan, kendi kendine yeten yuvarlak düğme */
#chat-toggle {
    /* Konumlandırma */
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #dc2626;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transform: translateY(2px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
    z-index: 999;

}

/* Üzerine gelindiğindeki efekt */
#chat-toggle:hover {
    transform: translateY(-1px);
}

/* Gizlenme durumu */
#chat-toggle.hidden {
    transform: scale(0);
    opacity: 0;
}

/* Ana sohbet penceresi */
.chat-window {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 370px;
    max-height: 80vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
    /* Başlangıçta gizli */
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.chat-window.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Sohbet penceresi başlığı */
.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: #f9fafb;
    border-bottom: 1px solid #e5e7eb;
}

.chat-header h3 {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
}

.chat-close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.2s ease;
}

.chat-close-btn:hover {
    color: #1f2937;
}

/* Takma ad giriş ekranı */
.chat-login {
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.chat-login h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.chat-login p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.chat-login .chat-form {
    width: 100%;
}

/* Ana sohbet alanı */
.chat-main {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    /* İçeriğin taşmasını engellemek için önemli */
}

/* Mesajların listelendiği alan */
.chat-body {
    flex: 1;
    padding: 1.25rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Mesaj baloncukları genel stili */
.chat-message {
    padding: 0.75rem 1rem;
    border-radius: 18px;
    max-width: 80%;
    line-height: 1.4;
    word-wrap: break-word;
    /* Uzun kelimelerin taşmasını engeller */
}

.chat-message p {
    margin: 0;
    font-size: 0.95rem;
}

/* Diğer kullanıcıların mesajları (sol, gri) */
.chat-message.other {
    background: #f3f4f6;
    color: #1f2937;
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

/* Kendi mesajlarımız (sağ, kırmızı) */
.chat-message.self {
    background: #dc2626;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

/* Mesaj içindeki takma ad */
.chat-message .nickname {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

/* Mesaj yazma alanı (footer) */
.chat-footer {
    padding: 1rem 1.25rem;
    border-top: 1px solid #e5e7eb;
    background: #f9fafb;
}

.chat-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 0.8rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.chat-form input:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 1px rgba(220, 38, 38, 0.1);
}

.chat-form button {
    width: 88px;

    flex-shrink: 0;
    font-size: 0.8rem;
    padding: 0.65rem 1rem;
    border-radius: 8px;
    /* padding'i sıfırla */
    justify-content: center;
    /* ikonu ortala */
    /* .btn ve .btn-primary sınıflarından gelen stilleri kullanır */
}

#chat-send-btn {
    width: 44px;
    height: 44px;
}

/* JavaScript tarafından kullanılan yardımcı sınıf */
.hidden {
    display: none !important;
}

/* styles.css dosyanıza ekleyin */

/* Ürün kartının tıklanabilir olduğunu belirtmek için */
.product-card {
    cursor: pointer;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* Modal Stilleri */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    /* Bootstrap'in z-index'lerinden yüksek olsun */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    width: 90%;
    max-width: 600px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transform: scale(0.95);
    transition: transform 0.3s ease;
    max-height: 90vh;
    /* Ekran yüksekliğinin %90'ını geçmesin */
    overflow-y: auto;
    /* İçerik sığmazsa scroll çıksın */
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

/* Modal İçerik Stilleri */
#modal-body .modal-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

#modal-body h2 {
    margin-top: 0;
    font-size: 1.8rem;
    font-weight: 700;
}

.detail-section {
    margin-bottom: 1rem;
}

.detail-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.detail-section p,
.detail-section ul {
    margin: 0;
    color: #555;
    padding-left: 0;
    /* ul için default padding'i sıfırla */
    list-style-type: none;
    /* Madde işaretlerini kaldır */
}

.detail-section ul li {
    padding: 2px 0;
}

.badges-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 15px 0;
}

.badge-detail {
    background-color: #f0f4ff;
    color: #4a69bd;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 600;
}

/* =================================================================
   MOBİL CİHAZLAR İÇİN SOHBET PENCERESİ STİLLERİ
   ================================================================= */
@media (max-width: 480px) {

    /* Mobilde sohbet penceresini tam ekran yap */
    .chat-window {
        width: 100%;
        height: 100%;
        max-height: 100%;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        border-radius: 0;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 1.5rem;
    }

    .header-actions {
        justify-content: space-between;
    }

    .contact-info {
        flex-direction: column;
        gap: 0.75rem;
    }

    .restaurant-name {
        font-size: 2rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .cart-sidebar {
        width: 100%;
        right: -100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-actions {
        flex-direction: column;
    }
}