:root {
        --primary-color: #8B4513;
        --primary-light: #D2691E;
        --secondary-color: #2c3e50;
        --accent-color: #e67e22;
        --background-light: #f8f9fa;
        --text-dark: #2c3e50;
        --text-muted: #7f8c8d;
        --border-light: rgba(0, 0, 0, 0.08);
        --shadow-light: rgba(0, 0, 0, 0.05);
        --shadow-medium: rgba(0, 0, 0, 0.12);
    }

    body {
        font-family: 'Inter', sans-serif;
        line-height: 1.6;
        background-color: var(--background-light);
    }

    h1, h2, h3, h4, h5, h6 {
        font-family: 'Poppins', sans-serif;
    }

    .main-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        background: white;
        min-height: 100vh;
    }

    .section-header {
        background: linear-gradient(135deg, var(--secondary-color) 0%, #34495e 100%);
        color: white;
        padding: 20px;
        margin: 0;
        font-size: 24px;
        font-weight: 600;
        text-align: center;
        letter-spacing: 0.5px;
        border-radius: 0;
        position: relative;
        overflow: hidden;
    }

    .section-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        transition: left 0.5s;
    }

    .section-header:hover::before {
        left: 100%;
    }

    .category-scroll-wrapper {
        overflow-x: auto;
        white-space: nowrap;
        padding: 20px 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        margin-bottom: 30px;
    }

    .category-scroll-wrapper::-webkit-scrollbar {
        height: 8px;
    }

    .category-scroll-wrapper::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, 0.1);
        border-radius: 4px;
    }

    .category-scroll-wrapper::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
        border-radius: 4px;
    }

    .category-scroll-wrapper::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(90deg, #A0522D, #CD853F);
    }

    .category-row {
        display: inline-flex;
        gap: 20px;
        padding: 10px 0;
    }

    .category-link {
        text-decoration: none;
        flex: 0 0 auto;
    }

    .custom-category {
        width: 200px;
        min-height: 220px;
        background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
        border-radius: 20px;
        border: 1px solid var(--border-light);
        box-shadow: 0 4px 20px var(--shadow-light);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 15px;
        overflow: hidden;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        cursor: pointer;
        position: relative;
    }

    .custom-category:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        border-color: var(--primary-color);
    }

    .custom-category::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .custom-category:hover::before {
        opacity: 1;
    }

    .custom-category img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        border-radius: 15px;
        margin-bottom: 15px;
        transition: transform 0.3s ease;
    }

    .custom-category:hover img {
        transform: scale(1.05);
    }

    .category-title {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 16px;
        color: var(--text-dark);
        margin: 0;
        line-height: 1.3;
        transition: color 0.3s ease;
    }

    .custom-category:hover .category-title {
        color: var(--primary-color);
    }

    .menu-container {
        background: var(--background-light);
        padding: 30px 20px;
        border-radius: 20px;
        margin: 20px 0;
    }

    .list-group {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-item {
        background: white;
        border-radius: 15px;
        margin-bottom: 15px;
        padding: 20px;
        box-shadow: 0 2px 15px var(--shadow-light);
        transition: all 0.3s ease;
        border: 1px solid var(--border-light);
    }

    .menu-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px var(--shadow-medium);
        border-color: rgba(139, 69, 19, 0.2);
    }

    .menu-item .row {
        align-items: center;
    }

    .menu-item img {
        width: 100%;
        height: 80px;
        object-fit: cover;
        border-radius: 12px;
        transition: transform 0.3s ease;
    }

    .menu-item:hover img {
        transform: scale(1.05);
    }

    .item-name {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 18px;
        color: var(--text-dark);
        margin-bottom: 8px;
    }

    .item-price {
        font-weight: 600;
        color: var(--primary-color);
        font-size: 16px;
    }

    .item-ingredients {
        color: var(--text-muted);
        font-size: 14px;
        line-height: 1.4;
        margin-top: 8px;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .custom-category {
            width: 140px; /* Smaller width */
            min-height: 180px; /* Smaller height */
            padding: 10px 8px; /* Reduced padding */
        }

        .custom-category img {
            height: 90px; /* Reduced image height */
            margin-bottom: 10px; /* Reduced margin */
        }

        .category-title {
            font-size: 13px; /* Smaller font size */
        }

        .category-row {
            gap: 15px; /* Reduced gap between categories */
        }

        .menu-container {
            padding: 15px 10px; /* Reduced padding */
        }

        .menu-item {
            padding: 12px; /* Reduced padding */
            margin-bottom: 10px; /* Reduced margin */
        }

        .menu-item img {
            height: 60px; /* Reduced item image height */
        }

        .item-name {
            font-size: 15px; /* Smaller font size */
        }

        .item-price {
            font-size: 14px; /* Smaller font size */
        }

        .item-ingredients {
            font-size: 12px; /* Smaller font size */
        }

        .section-header {
            font-size: 20px; /* Smaller header font size */
            padding: 15px; /* Reduced header padding */
        }
    }

/* CART FAB */
.cart-fab {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366; 
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    font-size: 24px;
    cursor: pointer;
    z-index: 1000;
    transition: transform 0.2s, background-color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-fab:hover {
    transform: scale(1.05);
    background-color: #128c7e;
}
.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #d9534f;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ADD TO CART BTN */
.add-to-cart-btn {
    background-color: #25D366;
    color: white;
    border: none;
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
    width: auto;
    min-width: 90px;
    height: 32px;
}
.add-to-cart-btn:hover {
    background-color: #128c7e;
}

/* INLINE QTY SELECTOR */
.item-cart-actions {
    margin-top: 10px;
    height: 32px;
    display: flex;
    justify-content: flex-start;
}
.qty-selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90px;
    height: 100%;
    border: 1px solid #ced4da;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}
.qty-btn {
    background: #f8f9fa;
    border: none;
    color: #495057;
    font-size: 16px;
    width: 28px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.qty-btn:hover {
    background: #e9ecef;
}
.qty-display {
    font-weight: bold;
    color: #212529;
    flex-grow: 1;
    text-align: center;
}

/* CART MODAL */
.cart-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1001;
    display: flex;
    justify-content: center;
    align-items: center;
}
.cart-modal {
    background: white;
    width: 90%;
    max-width: 450px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    max-height: 80vh;
}
.cart-header {
    background: #f8f9fa;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #ddd;
}
.cart-header h3 {
    margin: 0;
    font-size: 18px;
}
.close-cart {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #555;
}
.cart-body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}
.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}
.cart-item-name {
    font-weight: 600;
}
.cart-item-price {
    font-size: 14px;
    color: #666;
}
.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.cart-item-actions button {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 1px solid #ddd;
    background: white;
    cursor: pointer;
}
.empty-cart-msg {
    text-align: center;
    color: #888;
}
.cart-footer {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    background: #f8f9fa;
}
.cart-total {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
    text-align: right;
}
.checkout-btn {
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
}
.checkout-btn:hover {
    background: #1ebc5a;
}