/* ===== CSS Variables ===== */
:root {
    /* Colors */
    --primary-color: #2c1810;
    --secondary-color: #D2691E;
    --accent-color: #FF6B35;
    --text-dark: #2C1810;
    --text-light: #6B4423;
    --bg-light: #FFF8F3;
    --bg-white: #FFFFFF;
    --caramel: #bf360c;
    --milk: #f5f5f5;
    --cream: #FAF0E6; 
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    
    /* Semantic aliases for consistency */
    --primary-brown: #6B4423;
    --dark-brown: #2C1810;
    --warm-orange: #FF6B35;
    --accent-green: #4CAF50;
    --warm-red: #DC3545;
    --color-text-primary: #2C1810;
    --color-text-placeholder: #999;
    
    /* Typography */
    --font-primary: 'Jost', sans-serif;
    --font-size-base: 16px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
    --transition-smooth: 0.5s ease;
}

/* ===== Global Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== Scrollbar styling ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: var(--border-radius-sm);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* ===== Main Container Layout ===== */
.main-container {
    display: flex;
    width: 100%;
    min-height: 100vh; 
    margin: 0;
    position: relative;
}

/* ===== Mobile Quick Menu ===== */
.mobile-quick-menu {
    display: none; /* Hidden by default, shown on mobile */
    width: 100%;
    padding: 1rem;
    background: var(--bg-white);
    border-bottom: 2px solid var(--cream);
    position: sticky;
    top: 0;
    z-index: 99;
    box-shadow: 0 2px 10px var(--shadow);
}

.quick-nav-list {
    display: flex;
    gap: 0.5rem;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
}

.quick-nav-list::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.quick-nav-btn {
    background: var(--secondary-color);
    color: var(--bg-white);
    border: 2px solid var(--secondary-color);
    padding: 0.6rem 0.8rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
    flex-shrink: 0;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.quick-nav-btn:hover,
.quick-nav-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Sidebar Navigation ===== */
.menu-sidebar {
    position: sticky;
    top: 0; 
    left: 0;
    width: 280px;
    height: 100vh;
    flex-shrink: 0; 
    background: var(--bg-light); 
    box-shadow: 2px 0 20px rgba(0, 0, 0, 0.05);
    z-index: 100; 
    overflow-y: auto;
}

.search-form {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--cream);
    margin-bottom: 1rem;
}

.search-form span {
    color: var(--color-text-placeholder);
    font-size: 1.2rem;
}

.search-form input {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 1rem;
    margin-left: 12px;
    color: var(--color-text-primary);
    font-family: var(--font-primary);
}

.search-form input::placeholder {
    color: var(--color-text-placeholder);
}

.menu-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0 15px 30px;
    background: var(--bg-light);
    border-right: 2px solid var(--cream);
}

.menu-nav-container {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    width: 100%;
}

.menu-tab {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--primary-brown);
    padding: 0.8rem 1.2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: left;
    width: 100%;
    white-space: nowrap;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.menu-tab:hover,
.menu-tab.active {
    background: var(--accent-color);
    color: var(--bg-white);
    border-color: var(--accent-color);
    transform: translateX(5px);
    box-shadow: 0 4px 12px var(--primary-brown);
}

/* ===== Menu Content Area ===== */
.menu-container {
    flex: 1;
    padding: 2rem;
    overflow-y: auto;
    min-height: 100vh;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

/* Menu Sections */
.menu-section {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
    margin-bottom: 3rem;
}

.menu-section.active {
    display: block;
}

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

.section-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-brown);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--primary-brown);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* ===== Menu Grid ===== */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.menu-category {
    background: var(--bg-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cream);
}

.menu-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--warm-orange), var(--secondary-color));
}

.menu-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.category-title {
    font-size: 1.4rem;
    color: var(--dark-brown);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    font-weight: 600;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--warm-orange);
    border-radius: 2px;
}

/* ===== Menu Items ===== */
.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-bottom: 1px dashed var(--cream);
    transition: all 0.3s ease;
    border-radius: var(--border-radius-sm);
    position: relative;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.menu-item:hover {
    background: var(--cream);
    transform: translateX(5px);
}

.item-info {
    flex: 1;
    margin-right: 1rem;
}

.item-name {
    font-weight: 600;
    color: var(--dark-brown);
    margin-bottom: 0.3rem;
    font-size: 1.1rem;
}

.item-description {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.item-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}

.tag {
    background: var(--cream);
    color: var(--primary-brown);
    padding: 0.25rem 0.7rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid transparent;
}

.tag.vegan {
    background: #e8f5e9;
    color: var(--accent-green);
    border-color: var(--accent-green);
}

.tag.gluten-free {
    background: #fff3e0;
    color: #e65100;
    border-color: #ff9800;
}

.tag.spicy {
    background: #ffebee;
    color: var(--warm-red);
    border-color: var(--warm-red);
}

/* Item Actions (Price + Add to Cart) */
.item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    min-width: 80px;
}

.item-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--warm-orange);
    text-align: right;
}

.add-to-cart-btn {
    background: var(--secondary-color);
    color: white;
    border: none;
    width: 100%;
    height: 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.add-to-cart-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1) rotate(-1.5deg);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

.add-to-cart-btn:active {
    transform: scale(0.95);
}

/* ===== Special Offers Section ===== */
.special-offers {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    color: var(--milk);
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    margin: 3rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(44, 24, 16, 0.2);
}

.special-offers::before {
    content: '☕';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.special-offers h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.offer-item {
    background: rgba(255,255,255,0.15);
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    transition: transform 0.3s ease;
}

.offer-item:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.2);
}

.offer-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.offer-item p {
    font-size: 0.95rem;
    opacity: 0.95;
}

.offer-price {
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0.5rem 0;
}

.offer-savings {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
    color: #ffd700;
}

/* ===== Kiddies Menu Styles ===== */
#kiddies .section-header {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    margin-bottom: 2rem;
    text-align: center;
    border: 2px solid #ffb6c1;
}

#kiddies .section-header h2 {
    color: #ff6b6b;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

#kiddies .section-header p {
    color: #d63384;
    font-size: 1.2rem;
    font-weight: 500;
}

#kiddies .category-title {
    color: #ff6b6b;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(45deg, #fff5f5, #ffe0e0);
    border-radius: 15px;
    display: inline-block;
    border: 2px solid #ffd1dc;
}

#kiddies .menu-item {
    background: linear-gradient(135deg, #ffffff 0%, #fff9f9 100%);
    border: 2px solid #ffe0e0;
    border-radius: 15px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid #ffe0e0;
}

#kiddies .menu-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.15);
    border-color: #ff9a9e;
    background: white;
}

#kiddies .item-name {
    color: #d63384;
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

#kiddies .item-description {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.5;
}

#kiddies .item-price {
    color: #ff6b6b;
    font-size: 1.3rem;
    font-weight: bold;
}

#kiddies .tag {
    background: linear-gradient(45deg, #ff9a9e, #fecfef);
    color: #d63384;
    border: none;
    font-weight: 600;
}

#kiddies .add-to-cart-btn {
    background: #ff9a9e;
}

#kiddies .add-to-cart-btn:hover {
    background: #ff6b6b;
}

/* Kiddies Special Offers */
#kiddies .special-offers {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
    color: var(--text-dark);
    border: 2px solid #fff;
}

#kiddies .special-offers h3 {
    color: #ff6b6b;
}

#kiddies .offer-item {
    background: rgba(255,255,255,0.9);
    color: var(--text-dark);
    border: 2px solid #fff;
}

#kiddies .offer-item h4 {
    color: #d63384;
}

#kiddies .offer-price {
    color: #ff6b6b;
}

/* Kids Info Section */
.kids-info {
    background: linear-gradient(135deg, #d299c2 0%, #fef9d7 100%);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    margin-top: 2rem;
    border: 2px solid #fff;
}

.kids-info h3 {
    color: #d63384;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.info-item {
    background: white;
    padding: 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.info-item i {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: #d63384;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-item p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* ===== Quick Add Modal Styles ===== */
.quick-add-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.quick-add-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.modal-content {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.quick-add-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.modal-header h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--cream);
    color: var(--text-dark);
}

.price-display {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.quantity-selector {
    margin-bottom: 1.5rem;
}

.quantity-selector label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

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

.qty-btn {
    width: 40px;
    height: 40px;
    border: none;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: var(--accent-color);
    transform: scale(1.1);
}

.quantity-input {
    width: 60px;
    text-align: center;
    border: 2px solid var(--cream);
    border-radius: var(--border-radius-sm);
    padding: 0.5rem;
    font-size: 1.1rem;
    font-weight: bold;
    color: var(--text-dark);
}

.customization-options {
    margin-bottom: 1.5rem;
}

.customization-options h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.option-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.option-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
    transition: background 0.3s ease;
}

.option-label:hover {
    background: var(--bg-light);
}

.option-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary-color);
}

.special-instructions {
    margin-bottom: 1.5rem;
}

.special-instructions label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.special-instructions textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--cream);
    border-radius: var(--border-radius-sm);
    resize: vertical;
    font-family: inherit;
    font-size: 1rem;
    min-height: 80px;
    transition: border-color 0.3s ease;
}

.special-instructions textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    padding-top: 1.5rem;
    border-top: 2px solid var(--cream);
}

.btn-cancel, .btn-add-to-cart {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-cancel {
    background: var(--cream);
    color: var(--text-light);
}

.btn-cancel:hover {
    background: #e0d5c8;
}

.btn-add-to-cart {
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-add-to-cart:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.4);
}

/* Success Message */
.cart-success-message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #4caf50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1001;
    animation: slideInRight 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.success-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid var(--cream);
    border-radius: 50%;
    border-top-color: var(--secondary-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ===== Responsive Design - Tablet (1024px) ===== */
@media screen and (max-width: 1024px) {
    .main-container {
        flex-direction: column;
    }
    
    .menu-sidebar {
        display: none; /* Hide sidebar on mobile, use quick menu instead */
    }

    .mobile-quick-menu {
        display: block;
        width: 100%;
        padding: 0.5rem 1rem;
        background: var(--background-color, #f5f0e8);
        border-bottom: 1px solid var(--border-color, #e0d5c7);
        position: sticky;
        top: 60px; 
        z-index: 100;
      }
      
    .menu-nav {
        width: 100%;
        height: auto;
        padding: 15px;
        border-right: none;
        border-bottom: none;
    }
    
    .menu-nav-container {
        flex-direction: row;
        overflow-x: auto;
        padding: 0.5rem;
        gap: 0.8rem;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE 10+ */
    }
    
    .menu-nav-container::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .menu-tab {
        white-space: nowrap;
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        min-width: fit-content;
        flex-shrink: 0;
    }
    
    .menu-tab:hover,
    .menu-tab.active {
        transform: translateY(-2px);
    }
    
    .menu-container {
        order: 3;
        padding: 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .search-form {
        max-width: 400px;
        margin: 0 auto;
        border-bottom: none;
        border-top: 1px solid var(--cream);
    }
}

/* ===== Responsive Design - Mobile (768px) ===== */
@media screen and (max-width: 768px) {
    .mobile-quick-menu {
        display: block;
        order: 1;
    }
    

    
    .menu-container {
        padding: 1rem;
        order: 2;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-header {
        padding: 1.5rem 0;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .menu-category {
        padding: 1.5rem;
    }
    
    .special-offers {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
        margin: 1rem;
    }

    .modal-footer {
        flex-direction: column;
    }

    .btn-cancel, .btn-add-to-cart {
        width: 100%;
        justify-content: center;
    }
}

/* ===== Responsive Design - Small Mobile (480px) ===== */
@media screen and (max-width: 480px) {
    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .item-actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
        margin-top: 0.5rem;
    }
    
    .item-price {
        font-size: 1.3rem;
    }
    
    .add-to-cart-btn {
        width: 100%;
        height: 36px;
    }
    
    .category-title {
        font-size: 1.2rem;
    }
    
    .special-offers h3 {
        font-size: 1.5rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    #kiddies .section-header h2 {
        font-size: 1.8rem;
    }
    
    #kiddies .category-title {
        font-size: 1.2rem;
    }
}

/* ===== Print Styles ===== */
@media print {
    .menu-sidebar,
    .mobile-quick-menu,
    .add-to-cart-btn,
    .quick-add-modal {
        display: none !important;
    }
    
    .menu-section {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .menu-container {
        padding: 0;
    }
}