
        /* Custom Properties/Variables from cafe.css */
        :root {
            --brand-dark: #262626;
            --brand-accent: #A8715A; /* Spice Gold/Brown */
            --brand-accent-dark: #8C5B42;
            --brand-light: #E5E5E5;
            --hero-bg-light: #FAE1C0; 
            --text-primary: #1F2937;
            --text-dark-light: #E5E5E5;
            --text-gray: #4B5563;
            --text-gray-medium: #9CA3AF;

            /* Header variables */
            --header-bg: #1F2937;
            --header-text: #F9FAFB;
            --brand-primary: #D97706; 
            --brand-primary-dark: #B45309; 
            --header-height: 4.5rem;
        }

        /* Base Styles */
        html { 
            font-family: 'Inter', sans-serif; 
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            padding: 0;
            color: var(--text-primary);
            background-color: #FAE1C0;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        .main-content {
            padding-top: var(--header-height); /* Offset fixed header */
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        /* Utility Classes (Adapted for the dark theme sections) */
        .accent-color { color: var(--brand-accent); }
        .bg-accent { background-color: var(--brand-accent); }
        .bg-dark-primary { background-color: var(--brand-dark); }
        .text-dark-light { color: var(--text-dark-light); }
        .text-gray-700 { color: var(--text-gray); }
        .text-gray-400 { color: var(--text-gray-medium); }

        /* ---------------------------------------------------- */
        /* 1. Header and Navigation (Reused) */
        /* ---------------------------------------------------- */
        .new-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 50;
            background-color: var(--header-bg);
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .header-inner {
            max-width: 80rem;
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: var(--header-height);
        }

        .new-logo {
            font-size: 1.75rem; 
            font-weight: 700; 
            letter-spacing: 0.025em;
            color: var(--header-text);
            display: flex;
            align-items: center;
            text-decoration: none;
            transition: color 200ms ease;
        }

        .new-logo:hover {
            color: var(--brand-primary);
        }

        .logo-icon {
            width: 1.75rem;
            height: 1.75rem;
            margin-right: 0.5rem;
            color: var(--brand-primary);
        }

        .new-actions {
            display: flex;
            align-items: center;
            gap: 1.5rem;
        }
        
        /* Nav links adapted for the current page structure */
        .new-desktop-nav { display: none; }
        .order-btn {
            padding: 0.6rem 1.5rem;
            font-size: 1rem;
            font-weight: 600;
            color: var(--header-text);
            background-color: var(--brand-primary);
            border-radius: 0.5rem;
            text-decoration: none;
            transition: background-color 300ms ease, transform 150ms ease;
            box-shadow: 0 4px 15px rgba(217, 119, 6, 0.4);
        }

        .order-btn:hover {
            background-color: var(--brand-primary-dark);
            transform: translateY(-2px);
        }

        .menu-toggle-btn {
            padding: 0.5rem;
            border-radius: 0.5rem;
            color: var(--header-text);
            background: transparent;
            border: none;
            cursor: pointer;
            line-height: 1;
        }

        .menu-icon {
            width: 1.75rem;
            height: 1.75rem;
        }

        /* Show desktop order button, hide menu toggle for this page */
        .order-btn { display: block; }
        .menu-toggle-btn { display: none; }
        
        /* ---------------------------------------------------- */
        /* 2. Order Page Layout */
        /* ---------------------------------------------------- */

        .order-layout {
            display: grid;
            grid-template-columns: 1fr;
            max-width: 80rem;
            margin: 0 auto;
            padding: 2rem 1.5rem;
            gap: 2rem;
            flex-grow: 1;
        }

        @media (min-width: 1024px) {
            .order-layout {
                grid-template-columns: 2fr 1fr; /* Desktop: Menu (2/3) | Cart (1/3) */
                padding: 3rem 1.5rem;
            }
        }

        /* Menu Section */
        .menu-section {
            padding: 1rem 0;
        }

        .menu-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--text-primary);
            margin-bottom: 2rem;
            border-bottom: 4px solid var(--brand-accent);
            display: inline-block;
            padding-bottom: 0.5rem;
        }

        .category-heading {
            font-size: 1.75rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-top: 2.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid var(--brand-light);
        }

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

        .product-card {
            background-color: white;
            border: 1px solid var(--brand-light);
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            display: flex;
            flex-direction: column;
            transition: transform 300ms ease, box-shadow 300ms ease;
        }

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

        .product-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-bottom: 1px solid var(--brand-light);
        }

        .product-info {
            padding: 1rem;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .product-name {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 0.25rem;
        }

        .product-price {
            font-size: 1.125rem;
            font-weight: 600;
            color: var(--brand-accent);
            margin-bottom: 0.75rem;
        }

        .add-to-cart-btn {
            background-color: var(--brand-accent);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 0.5rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 300ms ease;
        }

        .add-to-cart-btn:hover {
            background-color: var(--brand-accent-dark);
        }

        /* Cart Section */
        .cart-container {
            position: sticky;
            top: calc(var(--header-height) + 1rem); /* Sticky below header */
            background-color: var(--brand-dark);
            color: var(--text-dark-light);
            padding: 1.5rem;
            border-radius: 0.75rem;
            height: fit-content;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .cart-heading {
            font-size: 1.75rem;
            font-weight: 700;
            border-bottom: 2px solid var(--brand-accent);
            padding-bottom: 0.75rem;
            margin-bottom: 1rem;
            color: var(--brand-accent);
        }

        #cart-items {
            min-height: 100px;
            max-height: 60vh;
            overflow-y: auto;
            margin-bottom: 1rem;
            padding-right: 0.5rem;
        }

        .cart-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem 0;
            border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
        }
        
        .cart-item-name {
            font-size: 1rem;
            font-weight: 500;
            flex-grow: 1;
            padding-right: 0.5rem;
        }

        .cart-item-price {
            font-weight: 600;
            color: var(--text-dark-light);
        }

        .remove-item-btn {
            background: none;
            border: none;
            color: var(--text-gray-medium);
            cursor: pointer;
            margin-left: 0.5rem;
            transition: color 300ms ease;
        }

        .remove-item-btn:hover {
            color: var(--brand-accent);
        }

        .cart-summary {
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 2px solid rgba(255, 255, 255, 0.2);
            font-size: 1.25rem;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
        }

        .checkout-btn {
            width: 100%;
            padding: 1rem;
            margin-top: 1.5rem;
            font-size: 1.125rem;
            font-weight: 700;
            color: var(--brand-dark);
            background-color: var(--hero-bg-light); /* Light accent for high contrast */
            border: none;
            border-radius: 0.5rem;
            cursor: pointer;
            transition: background-color 300ms ease, transform 150ms ease;
        }

        .checkout-btn:hover:not(:disabled) {
            background-color: var(--brand-light);
            transform: translateY(-2px);
        }

        .checkout-btn:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        /* ---------------------------------------------------- */
        /* 3. Footer (Reused) */
        /* ---------------------------------------------------- */
        
.footer {
    background-color: var(--brand-dark);
    color: var(--text-dark-light);
    padding: 2.5rem 1.5rem; /* py-10 px-6 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 1024px) {
    .footer {
        padding-left: 2rem; /* lg:px-8 */
        padding-right: 2rem;
    }
}

.footer-container {
    max-width: 80rem; /* max-w-7xl */
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem; /* gap-12 */
    align-items: flex-start;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-logo {
    color: var(--brand-accent);
    margin-bottom: 0.5rem;
}

.footer-slogan {
    font-size: 0.875rem; /* text-sm */
    color: var(--text-gray-medium);
}

/* Newsletter */
.newsletter-heading {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    margin-bottom: 1rem; /* mb-4 */
    color: var(--text-dark-light);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem; /* space-x-2 */
}

.newsletter-input {
    flex-grow: 1;
    padding: 0.75rem; /* p-3 */
    font-size: 0.875rem; /* text-sm */
    border-radius: 0.5rem; /* rounded-lg */
    background-color: #4B5563; /* bg-gray-700 */
    border: 1px solid #4B5563; /* border-gray-600 */
    color: var(--text-dark-light);
    outline: none;
}

.newsletter-input:focus {
    border-color: var(--brand-accent);
    box-shadow: 0 0 0 1px var(--brand-accent); /* focus:ring-1 focus:ring-brand-accent */
}

.btn-subscribe {
    padding: 0.75rem 1.25rem; /* px-5 py-3 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    color: white;
    background-color: var(--brand-accent);
    border-radius: 0.5rem; /* rounded-lg */
    transition: background-color 300ms ease;
    border: none;
    cursor: pointer;
}

.btn-subscribe:hover {
    background-color: var(--brand-accent-dark);
}

.newsletter-message {
    margin-top: 0.5rem; /* mt-2 */
    font-size: 0.875rem; /* text-sm */
    color: #86EFAC; /* text-green-400 */
}

/* Legal Links */


@media (min-width: 768px) {
    .footer-links {
        text-align: right;
    }
}

.footer-link-item {
    display: block;
    font-size: 0.875rem; /* text-sm */
    color: #9CA3AF; /* text-gray-400 */
    margin-bottom: 0.25rem; /* mb-1 */
    text-decoration: none;
    transition: color 300ms ease;
}

.footer-link-item:hover {
    color: var(--brand-accent);
}

/* Copyright */
.copyright-section {
    margin-top: 2.5rem; /* mt-10 */
    padding-top: 1.5rem; /* pt-6 */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem; /* text-sm */
    color: #6B7280; /* text-gray-500 */
}

@media (min-width: 640px) {
    .copyright-section {
        flex-direction: row;
    }
}

.social-icons-footer {
    display: flex;
    gap: 1rem; /* space-x-4 */
    margin-top: 1rem; /* mt-4 */
}

@media (min-width: 640px) {
    .social-icons-footer {
        margin-top: 0; /* sm:mt-0 */
    }
}

.social-icon-sm {
    width: 1.25rem;
    height: 1.25rem;
    color: #6B7280;
    transition: color 300ms ease;
}

.social-icons-footer a:hover .social-icon-sm {
    color: var(--brand-accent);
}

/* Override Lucide icons default display */
[data-lucide] {
    display: inline-block;
}
    