    /* ── Desktop Layout ─────────────────────────── */
    .parent-div {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 5%;
        background-color: transparent;
    }

    .logo-link {
        display: flex;
        align-items: center;
    }

    .logo {
        width: 120px;
    }

    .nav-links {
        display: flex;
        margin-top: 1em;
        align-items: center;
        gap: 3vw;
        list-style-type: none;
    }

    .mobile-menu-icon {
        display: none;
    }

    .mobile-menu-top {
        display: none;
    }

    #menu-toggle,
    #toggle-mywork,
    #toggle-journey,
    .dropdown-toggle {
        display: none !important;
    }

    .nav-links a {
        color: inherit;
        text-decoration: none;
        font-size: 1.1em;
        font-weight: 400;
        transition: color 0.2s ease;
    }

    /* Active — main links */
    .nav-links>li>a.active {
        color: #000;
        font-weight: 600;
    }

    /* ── Meet the Chef Button ───────────────────── */
    .meet-the-chef {
        background-color: #526342;
        color: #ffffff !important;
        padding: 10px 24px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        display: inline-block;
        white-space: nowrap;
        transition: background-color 0.2s ease;
    }

    .meet-the-chef:hover {
        background-color: #3e4f2b;
    }

    /* ══════════════════════════════════════════════
   PURE CSS DROPDOWN — NO JS
   ══════════════════════════════════════════════ */
    .dropdown-container {
        position: relative;
    }

    /* Hidden by default */
    .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 15px;
        background-color: #e9e9df;
        padding: 16px;
        border-radius: 16px;
        min-width: 160px;
        flex-direction: column;
        gap: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        z-index: 100;
        animation: fadeInDrop 0.2s ease;
    }

    .dropdown-menu.show {
    display: flex;
}

    @keyframes fadeInDrop {
        from {
            opacity: 0;
            transform: translate(-50%, -10px);
        }

        to {
            opacity: 1;
            transform: translate(-50%, 0);
        }
    }

    /* Dropdown items */
    .dropdown-item {
        display: block;
        padding: 5px 20px;
        text-align: center;
        text-decoration: none;
        color: #333 !important;
        font-weight: 500 !important;
        position: relative;
        border-radius: 7px;
        transition: all 0.2s ease;
        white-space: nowrap;
    }

    .dropdown-item:not(.active) {
        border: 1px solid #cfcfcf;
        background-color: transparent;
    }

    .dropdown-item:not(.active):hover {
        background: #F6F3EC;
    }

    .dropdown-item.active {
        background: #F6F3EC;
        border: 1px solid transparent;
        overflow: hidden;
    }

    .dropdown-item.active::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        height: 100%;
        width: 6px;
        border-left: 3px solid #4F5F3A;
        border-top-left-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    /* Arrow rotate on hover */
    .dropdown-trigger i {
        transition: transform 0.3s ease;
        margin-left: 4px;
        display: inline-block;
    }

    /* Active trigger text */
    .dropdown-trigger.active {
        color: #000;
        font-weight: 600;
    }

    /* ══════════════════════════════════════════════
   MOBILE — 992px and below
   ══════════════════════════════════════════════ */
    @media (max-width: 992px) {

        .parent-div {
            display: flex;
            align-items: center;
            padding: 1rem 4%;
            gap: 2rem;
        }

        .mobile-menu-icon {
            display: flex;
            align-items: center;
            background: none;
            border: none;
            color: #526342;
            cursor: pointer;
        }

        .mobile-menu-icon i {
            font-size: 32px;
        }

        .logo-link {
            margin-right: auto;
        }

        .logo {
            width: 100px;
        }

        .meet-the-chef {
            padding: 8px 16px;
            font-size: 0.9rem;
        }

        /* ── Full Screen Overlay ─────────────────── */
        .nav-menu-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: #e9e9df;
            z-index: 2000;
            display: flex;
            flex-direction: column;
            padding: 1.5rem 5%;
            /* CSS ONLY trick: checkbox se toggle */
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
        }

        /* ── CSS ONLY Mobile Menu Toggle ─────────── */
        /* Hidden checkbox — menu toggle ke liye */
        #menu-toggle {
            display: none;
        }

        #menu-toggle:checked~.parent-div .nav-menu-container,
        #menu-toggle:checked~* .nav-menu-container {
            transform: translateX(0);
        }

        /* Hamburger label — button ki jagah */
        label.mobile-menu-icon {
            display: flex;
            align-items: center;
            cursor: pointer;
        }

        /* Close button — actually ek label hai jo checkbox uncheck karta hai */
        label.close-menu-icon {
            background: none;
            border: none;
            font-size: 32px;
            color: #111;
            cursor: pointer;
        }

        .mobile-menu-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            width: 100%;
        }

        .fake-hamburger {
            font-size: 32px;
            color: #526342;
        }

        .nav-links {
            flex-direction: column;
            gap: 1.2rem;
            align-items: center;
            width: 100%;
        }

        .nav-links li {
            width: 60%;
            text-align: center;
        }

        .nav-links>li>a {
            display: block;
            padding: 12px 0;
            border-radius: 8px;
            position: relative;
            font-size: 1.2rem;
        }

        .nav-links>li>a.active {
            background-color: #f4f4eb;
            color: #111;
            font-weight: 500;
        }

        .nav-links>li>a.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 6px;
            border-left: 3px solid #4F5F3A;
            border-top-left-radius: 8px;
            border-bottom-left-radius: 8px;
        }

        /* ── Mobile Dropdown: checkbox trick ─────── */
        .dropdown-toggle {
            display: none;
        }

        .dropdown-toggle:checked~.dropdown-menu {
            display: flex;
        }

        .dropdown-toggle:checked~.dropdown-trigger i {
            transform: rotate(180deg);
        }

        /* Mobile dropdown label */
        label.dropdown-trigger {
            cursor: pointer;
            display: block;
            padding: 12px 0;
            font-size: 1.2rem;
            text-decoration: none;
            color: inherit;
            font-weight: 400;
        }

        label.dropdown-trigger.active {
            font-weight: 600;
            color: #000;
        }

        /* Mobile dropdown menu */
        .dropdown-menu {
            position: static;
            transform: none;
            width: 100%;
            background-color: transparent;
            box-shadow: none;
            padding: 0;
            margin-top: 10px;
            gap: 16px;
            animation: mobileFadeIn 0.2s ease;
        }

        .dropdown-item:not(.active) {
            border: none;
        }

        .dropdown-item.active {
            background-color: transparent;
        }

        .dropdown-item.active::before {
            display: none;
        }

        @keyframes mobileFadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
    }