        :root {
            --pr: #1F441A;
            --sc: #EBE4D4;
            --dark-green: #1F441A;
            --gold: #F6D763;
            --glass: rgba(255, 255, 255, 0.05);
            --glass-border: rgba(255, 255, 255, 0.1);

        }
        
    .fs-7{
        font-size: 0.8rem !important;
    }
        .text-pr{
            color: var(--pr);
        }
        .text-pr2{
            color: var(--gold);
        }
        .bg-pr{
            background: linear-gradient(135deg, rgba(17, 37, 14, 0.9), rgba(46,107,39,0.6)) !important;
        }
        .bg-warning{
            background-color: var(--gold) !important;
        }
        body {
            background-color: var(--dark-green);
            color: #ffffff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        h1, h2, .serif-font {
            font-family: 'Playfair Display', serif;
        }

/* --- Menu Hero --- */
    .menu-hero {
        position: relative;
        min-height: 75vh;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                    url('/images/img6.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        text-align: center;
        color: #ffffff;
        padding-top: 100px;
    }

    /* --- Category Grid --- */
    .menu-grid-section {
        background-color: var(--sc);
        padding: 100px 0;
    }

    .menu-card {
        background: #ffffff;
        border-radius: 30px;
        padding: 40px;
        height: 100%;
        transition: all 0.4s ease;
        border: 1px solid rgba(31, 68, 26, 0.05);
        display: flex;
        flex-direction: column;
        position: relative;
        overflow: hidden;
    }

    .menu-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(31, 68, 26, 0.1);
    }

    .cat-number {
        font-family: 'Playfair Display', serif;
        font-size: 3rem;
        color: var(--pr);
        opacity: 0.1;
        position: absolute;
        top: 20px;
        right: 30px;
        line-height: 1;
    }

    .cat-title {
        font-family: 'Playfair Display', serif;
        color: var(--pr);
        font-size: 1.75rem;
        margin-bottom: 15px;
        border-bottom: 2px solid var(--gold);
        padding-bottom: 10px;
        width: fit-content;
    }

    .cat-desc {
        color: #444;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }

    .tag-container {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 25px;
    }

    .menu-tag {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 800;
        background: var(--sc);
        color: var(--pr);
        padding: 4px 12px;
        border-radius: 50px;
    }

    .picks-box {
        background: #f9fbf8;
        padding: 20px;
        border-radius: 15px;
        margin-top: auto;
    }

    .picks-label {
        font-size: 0.75rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--pr);
        margin-bottom: 10px;
        display: block;
    }

    .picks-list {
        font-size: 0.85rem;
        color: #666;
        margin: 0;
    }

    /* --- Dressings Bar --- */
    .dressings-bar {
        background-color: #1a1a1a; /* Dark Charcoal */
        padding: 30px 0;
        color: #ffffff;
        border-top: 4px solid var(--gold);
    }

    .dressings-content {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .dressings-label {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: var(--gold);
        margin-right: 10px;
    }

    .dressing-item {
        font-size: 0.9rem;
        letter-spacing: 1px;
        text-transform: uppercase;
        opacity: 0.8;
    }

    .dressing-sep {
        color: var(--gold);
        font-weight: bold;
    }

    /* --- Wellness Section --- */
    .wellness-block {
        background-color: var(--sc);
        padding: 80px 0;
    }

    .wellness-card {
        background: var(--pr);
        color: white;
        border-radius: 35px;
        padding: 60px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 25px 50px rgba(31, 68, 26, 0.2);
    }

    .wellness-card::after {
        content: 'HEALTH';
        position: absolute;
        top: -20px;
        right: -20px;
        font-size: 10rem;
        font-weight: 900;
        opacity: 0.03;
        color: white;
    }

    .health-list {
        list-style: none;
        padding: 0;
        margin-top: 30px;
    }

    .health-list li {
        margin-bottom: 15px;
        font-size: 1.1rem;
        display: flex;
        align-items: center;
    }

    .health-list li::before {
        content: '✓';
        color: var(--gold);
        font-weight: bold;
        margin-right: 15px;
        background: rgba(252, 215, 99, 0.1);
        width: 25px;
        height: 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
    }

    /* --- Popular Dishes Table/Grid --- */
    .popular-section {
        background-color: #ffffff;
        padding: 100px 0;
    }

    .popular-table-wrapper {
        border-radius: 20px;
        overflow: hidden;
        border: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    }

    .table-pn {
        margin-bottom: 0;
    }

    .table-pn thead {
        background-color: var(--pr);
        color: var(--gold);
    }

    .table-pn th {
        padding: 20px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.8rem;
        border: none;
    }

    .table-pn td {
        padding: 20px;
        vertical-align: middle;
        border-color: #f1f1f1;
    }

    .dish-name {
        font-family: 'Playfair Display', serif;
        font-weight: 700;
        color: var(--pr);
        font-size: 1.1rem;
    }

    .dish-cat-tag {
        font-size: 0.7rem;
        background: var(--sc);
        color: var(--pr);
        padding: 5px 12px;
        border-radius: 50px;
        font-weight: 800;
        text-transform: uppercase;
    }

    .reviewer-note {
        font-size: 0.9rem;
        color: #666;
        font-style: italic;
    }

    .promise-strip {
        background: var(--gold);
        color: var(--pr);
        padding: 15px;
        text-align: center;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-size: 0.85rem;
    }   

    .popular-table-wrapper {
    width: 100%;
    overflow-x: auto; /* enables horizontal scroll on small screens */
}

.table-pn {
    min-width: 600px; /* prevents squishing */
    width: 100%;
    border-collapse: collapse;
}

@media (max-width: 768px) {
    .table-pn th,
    .table-pn td {
        padding: 10px;
        font-size: 14px;
    }

    .dish-cat-tag {
        display: inline-block;
        font-size: 12px;
        padding: 4px 8px;
    }

    .promise-strip {
        font-size: 13px;
        text-align: center;
        padding: 10px;
    }
}