: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 */
        }
    }