    /* --- CSS VARIABLES --- */
    :root {
        --primary-color: #A03026; /* Reddish-brown */
        --primary-dark: #7a231b;
        --text-dark: #222;
        --text-light: #666;
        --bg-light: #f9f9f9;
        --border-color: #e5e5e5;
        --header-height: 90px;
        --top-bar-height: 50px;
    }

    /* --- GLOBAL RESETS --- */
    /* Only apply resets to the header elements to avoid breaking other theme styles */
    .site-header * {
        box-sizing: border-box;
    }

    /* Add padding to body to prevent content hiding behind fixed header */
    body {
        /* Padding top equals header + top bar height for desktop */
        padding-top: calc(var(--header-height) + var(--top-bar-height));
    }

    .site-header ul { list-style: none; padding: 0; margin: 0; }
    .site-header a { text-decoration: none; color: inherit; }

    /* --- UTILITY CLASSES --- */
    .icon-xs { font-size: 10px; margin-left: 5px; }
    .mr-2 { margin-right: 8px; }

    /* --- TOP BAR --- */
    .top-bar {
        background-color: #f8f8f8;
        color: var(--text-light);
        font-size: 12px;
        padding: 0 5%;
        height: var(--top-bar-height);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid var(--border-color);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1001;
    }

    /* --- MAIN HEADER LAYOUT --- */
    .site-header {
        background-color: #fff;
        padding: 0 5%;
        height: var(--header-height);
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
        box-shadow: 0 2px 15px rgba(0,0,0,0.04);
        position: fixed;
        top: var(--top-bar-height);
        left: 0;
        width: 100%;
        z-index: 1000;
        transition: top 0.3s ease-in-out; /* Smooth transition for desktop */
    }

    /* Adjust for WordPress Admin Bar if visible */
    .admin-bar .top-bar { top: 32px; }
    .admin-bar .site-header { top: calc(var(--top-bar-height) + 32px); }
    .admin-bar .mega-menu { top: calc(var(--top-bar-height) + var(--header-height) + 32px); }

    @media screen and (max-width: 768px) {
        .admin-bar .top-bar { top: 46px; }
        .admin-bar #wpadminbar { position: fixed; }
        .admin-bar .site-header { top: 46px !important; }
    }

    .top-info { display: flex; gap: 25px; }
    .top-info span { display: flex; align-items: center; }
    .top-info i { margin-right: 8px; color: var(--primary-color); }

    .social-icons { display: flex; gap: 5px; }
    .social-icons a {
        color: #fff;
        background-color: #5a2e2e;
        width: 28px;
        height: 28px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        font-size: 12px;
        transition: 0.3s;
    }
    .social-icons a:hover { background-color: var(--primary-color); }

    .header-left { justify-self: start; height: 100%; }
    .header-center { justify-self: center; text-align: center; }
    .header-right { justify-self: end; display: flex; align-items: center; gap: 20px; }

    /* --- LOGO --- */
    .brand-logo {
        font-family: 'Playfair Display', serif;
        font-size: 36px;
        font-weight: 700;
        color: #000;
        display: flex;
        align-items: center;
        letter-spacing: 0.5px;
    }
    .logo-icon { color: var(--primary-color); margin-right: 12px; font-size: 0.9em; }
    .logo-image { max-height: 50px; max-width: 200px; }

    /* --- DESKTOP NAV MENU --- */
    .nav-menu { display: flex; height: 100%; align-items: center; }
    .nav-item { position: relative;/** margin-right: 25px;**/ height: 100%; display: flex; align-items: center; }
    .nav-link {
        color: #333;
        font-weight: 600;
        font-size: 13px;
        text-transform: uppercase;
        transition: 0.3s;
        position: relative;
        padding: 30px 15px;
        cursor: pointer;
        display: flex;
        align-items: center;
    }
    .nav-link:hover, .nav-link.active { color: var(--primary-color); }
    .nav-link::after {
        content: '';
        position: absolute; bottom: 25px; left: 0;
        width: 0%; height: 2px;
        background-color: var(--primary-color);
        transition: 0.3s;
    }
    .nav-link:hover::after { width: 100%; }

    /* --- APPOINTMENT BUTTON --- */
    .btn-appointment {
        background-color: var(--primary-color);
        color: white !important;
        padding: 14px 35px;
        text-transform: uppercase;
        font-size: 13px;
        font-weight: 600;
        border-radius: 2px;
        transition: 0.3s;
        white-space: nowrap;
        display: inline-block;
    }
    .btn-appointment:hover {
        background-color: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(160, 48, 38, 0.3);
    }

    /* --- STANDARD DROPDOWN (PAGES) --- */
    .simple-dropdown {
        position: absolute;
        top: 100%;
        left: 0;
        width: 240px;
        background: #fff;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        border-top: 3px solid var(--primary-color);
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: translateY(20px);
        transition: all 0.3s ease;
        z-index: 9999;
        border-radius: 0 0 4px 4px;
        padding: 10px 0;
    }

    @media (min-width: 769px) {
        .nav-item:hover .simple-dropdown {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
    }

    .simple-dropdown li {
        display: block;
        margin: 0;
        height: auto;
    }

    .simple-dropdown li a {
        display: block;
        padding: 12px 25px;
        font-size: 14px;
        color: #555;
        font-weight: 500;
        transition: all 0.2s ease;
        text-transform: capitalize;
        border-bottom: 1px solid #f9f9f9;
    }

    .simple-dropdown li a i {
        width: 25px;
        color: #888;
        transition: 0.2s;
    }

    .simple-dropdown li a:hover {
        background-color: #fffcfc;
        color: var(--primary-color);
        padding-left: 32px; /* Slide effect */
    }

    .simple-dropdown li a:hover i {
        color: var(--primary-color);
    }

    .simple-dropdown li:last-child a { border-bottom: none; }

    /* --- MEGA MENU STRUCTURE --- */
    .mega-menu {
        position: fixed;
        top: calc(var(--top-bar-height) + var(--header-height));
        left: 50%;
        transform: translateX(-50%) translateY(20px);
        width: 90vw;
        max-width: 1100px;
        background: #fff;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        border-top: 4px solid var(--primary-color);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
        pointer-events: none;
        overflow: hidden;
    }

    .nav-item.has-dropdown:hover .mega-menu {
        opacity: 1; visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Mega Menu Inner Grid */
    .mega-menu-inner {
        display: grid;
        grid-template-columns: 250px 1fr;
        min-height: 450px;
        max-height: 550px;
        position: relative;
        z-index: 1;
        overflow-y: auto;
    }

    /* Sidebar Buttons */
    .tab-btn {
        grid-column: 1;
        display: block;
        width: 100%;
        padding: 18px 25px;
        text-align: left;
        background: rgba(248, 248, 248, 0.95);
        border: none;
        border-bottom: 1px solid #eaeaea;
        border-right: 1px solid #eee;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
        text-transform: uppercase;
        font-size: 13px;
        color: #555;
        position: relative;
    }
    .tab-btn i { margin-right: 10px; width: 20px; text-align: center; }
    .tab-btn:hover { background-color: #fff; color: var(--primary-color); padding-left: 30px; }
    .tab-btn.active {
        background-color: #fff;
        color: var(--primary-color);
        border-left: 4px solid var(--primary-color);
        border-right: none;
        box-shadow: -5px 0 10px rgba(0,0,0,0.02);
        z-index: 2;
    }

    /* Content Area */
    .tab-content {
        grid-column: 2;
        grid-row: 1 / 50;
        padding: 30px;
        display: none;
        animation: fadeIn 0.4s ease-out;
        overflow-y: auto;
        background: rgba(255, 255, 255, 0.95);
    }
    .tab-content.active { display: block; }

    .tab-header-area {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
        padding-bottom: 10px;
    }
    .tab-header-area h3 { color: var(--primary-color); font-size: 20px; font-weight: 600; }
    .tab-header-area span { font-size: 12px; color: #888; font-weight: 500; }

    /* Pricing Table */
    .price-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .price-table th {
        text-align: left; background-color: #fdfdfd; color: #333;
        font-weight: 700; padding: 12px 15px; border-bottom: 2px solid var(--primary-color);
        text-transform: uppercase; font-size: 12px; letter-spacing: 0.5px;
    }
    .price-table td { padding: 12px 15px; border-bottom: 1px solid #f0f0f0; color: #666; vertical-align: middle; }
    .price-table tr:hover td { color: #000; background-color: #fff9f9; }
    .price-table tr:last-child td { border-bottom: none; }
    .price-col { font-weight: 600; color: var(--primary-color) !important; font-family: 'Poppins', sans-serif; }
    .price-col.secondary { color: #333 !important; }
    .facial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

    /* Background Pattern */
    .bg-pattern {
        position: absolute; right: 0; top: 0; width: 100%; height: 100%;
        background-image: linear-gradient(30deg, #A03026 12%, transparent 12.5%, transparent 87%, #A03026 87.5%, #A03026);
        background-size: 80px 140px; opacity: 0.03; pointer-events: none; z-index: 0;
    }

    /* --- MOBILE MENU SPECIFICS --- */
    .mobile-menu-btn { display: none; font-size: 24px; color: #333; cursor: pointer; }
    .mobile-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); z-index: 990; display: none;
    }
    .mobile-overlay.active { display: block; }

    /* STYLED CLOSE BUTTON */
    .close-menu-btn {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        background-color: #f4f4f4; /* Light background to stand out */
        border-radius: 50%;
        font-size: 20px;
        color: #333;
        cursor: pointer;
        z-index: 1005; /* High z-index */
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    .close-menu-btn:hover {
        background-color: #e0e0e0;
        color: var(--primary-color);
    }

    @keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

    /* --- RESPONSIVE ADJUSTMENTS --- */
    @media (max-width: 1200px) {
        .nav-item { margin-right: 15px; }
        .nav-link { font-size: 12px; }
    }

    @media (max-width: 768px) {
        /* Update vars for mobile */
        :root {
            --header-height: 70px;
            --top-bar-height: 0px; /* Important for calc() */
        }

        body { padding-top: 70px; }

        .top-bar { display: none; }

        .site-header {
            top: 0;
            padding: 0 20px;
            display: flex;
            justify-content: space-between;
            height: 70px;
            /* Remove transition on mobile to prevent scrolling jumpiness */
            transition: none;
        }

        .header-center { flex-grow: 1; text-align: left; }
        .brand-logo { font-size: 24px; }
        .header-right { gap: 15px; }
        .btn-appointment { padding: 10px 20px; font-size: 12px; }

        .header-left {
            position: fixed; top: 0; left: -320px; width: 300px; height: 100vh;
            background: #fff; z-index: 1003; transition: 0.3s ease;
            box-shadow: 2px 0 10px rgba(0,0,0,0.1); padding-top: 60px; overflow-y: auto;
        }
        .header-left.active { left: 0; }

        /* SHOW CLOSE BUTTON ON MOBILE */
        .close-menu-btn { display: flex; }

        .nav-menu { flex-direction: column; align-items: flex-start; width: 100%; }
        .nav-item { width: 100%; margin: 0; height: auto; border-bottom: 1px solid #f0f0f0; display: flex; flex-direction: column; }
        .nav-link { display: flex; justify-content: space-between; align-items: center; padding: 20px; width: 100%; color: #333; box-sizing: border-box; }
        .nav-link::after { display: none; }

        .simple-dropdown { position: static; width: 100%; box-shadow: none; border-top: none; background-color: #f8f8f8; display: none; opacity: 1; visibility: visible; transform: none; padding: 0; }

        .nav-item.has-dropdown:hover .mega-menu { display: none; }
        .nav-item.has-dropdown > a::after { display: none; }

        .nav-item.has-dropdown.active .mega-menu {
            display: block; position: static; width: 100%; transform: none; opacity: 1; visibility: visible;
            box-shadow: none; border-top: none; border-left: 4px solid var(--primary-color);
            background-color: #f9f9f9; padding: 0; max-width: 100%; height: auto;
        }

        .nav-item .simple-dropdown.active {
            display: block; animation: fadeIn 0.3s ease;
        }

        .nav-link.active .icon-xs {
            transform: rotate(180deg);
        }

        .simple-dropdown li a {
            padding-left: 40px;
        }

        .mega-menu-inner {
            display: block; height: auto; min-height: auto; max-height: none;
        }

        .mega-menu .bg-pattern { display: block; opacity: 0.05; }

        .tab-btn {
            width: 100%;
            background: rgba(255,255,255,0.8);
            border-right: none;
            padding: 15px 20px;
        }
        .tab-btn.active {
            border-left: none; background: #f0f0f0; color: var(--primary-color);
        }

        .tab-content {
            padding: 15px;
            border-bottom: 1px solid #eee;
            background: rgba(255,255,255,0.9);
        }

        .tab-header-area h3 { font-size: 16px; }
        .tab-header-area { flex-direction: column; align-items: flex-start; gap: 5px; }

        .price-table { font-size: 12px; }
        .price-table th, .price-table td { padding: 8px 10px; }
        .facial-grid { grid-template-columns: 1fr; gap: 10px; }

        .mobile-menu-btn { display: block; }
    }

    @media (max-width: 480px) {
        .btn-appointment { display: none; }
        .brand-logo { font-size: 20px; }
    }