:root {
            /* Golf-inspired color palette - Light theme */
            --color-primary: #3da55d;
            --color-primary-dark: #2d8a42;
            --color-primary-light: #5bc478;
            --color-accent: #e8c44a;
            --color-accent-light: #f5d76e;
            --color-accent-dark: #c9a227;

            --color-bg: #0f1a0f;
            --color-bg-alt: #162016;
            --color-surface: #1a2b1a;
            --color-text: #e8f0e8;
            --color-text-muted: #a8c0a8;
            --color-text-light: #7d957d;
            --color-border: #2d4a2d;
            --color-border-light: #243824;

            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
            --shadow-accent: 0 4px 20px rgba(232, 196, 74, 0.2);

            --font-heading: 'Georgia', 'Times New Roman', serif;
            --font-body: 'Segoe UI', system-ui, -apple-system, sans-serif;

            --space-xs: 0.25rem;
            --space-sm: 0.5rem;
            --space-md: 1rem;
            --space-lg: 1.5rem;
            --space-xl: 2rem;
            --space-2xl: 3rem;
            --space-3xl: 4rem;

            --content-width: 72ch;
            --content-width-wide: 90ch;

            --transition-fast: 150ms ease;
            --transition-base: 250ms ease;
            --transition-slow: 400ms ease;
        }

       
        *, *::before, *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            overflow-x: hidden;
        }

        body {
            font-family: var(--font-body);
            font-size: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            line-height: 1.7;
            color: var(--color-text);
            background: var(--color-bg);
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            overflow-x: hidden;
        }

        /* Focus styles for accessibility */
        :focus-visible {
            outline: 3px solid var(--color-accent);
            outline-offset: 3px;
        }

        ::selection {
            background: var(--color-primary-light);
            color: var(--color-surface);
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: linear-gradient(to bottom, var(--color-bg), transparent);
            padding: var(--space-md) 0;
            min-height: var(--space-xl);
        }

        /* Navigation */
        nav {
            max-width: var(--content-width-wide);
            margin: 0 auto;
            padding: 0 var(--space-lg);
        }

        nav ul {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-sm) var(--space-md);
            list-style: none;
        }

        nav a {
            color: var(--color-text-muted);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            padding: var(--space-xs) var(--space-sm);
            border-radius: 4px;
            transition: color var(--transition-fast), background var(--transition-fast);
        }

        nav a:hover {
            color: var(--color-primary);
            background: var(--color-bg-alt);
        }

        /* Main content */
        main {
            flex: 1;
            width: 100%;
            max-width: var(--content-width-wide);
            margin: 0 auto;
            padding: var(--space-xl) var(--space-lg) var(--space-3xl);
        }

        /* Article wrapper */
        article {
            max-width: var(--content-width);
            margin: 0 auto;
        }

        /* Hero section */
        .hero-image {
            width: 100vw;
            margin-left: 50%;
            transform: translateX(-50%);
            max-height: 60vh;
            overflow: hidden;
            margin-bottom: var(--space-2xl);
            position: relative;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, var(--color-bg));
            pointer-events: none;
        }

        .hero-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        /* Typography */
        h1 {
            font-family: var(--font-heading);
            font-size: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
            font-weight: 700;
            line-height: 1.15;
            color: var(--color-primary-dark);
            margin-bottom: var(--space-lg);
            letter-spacing: -0.02em;
        }

        @media (prefers-color-scheme: dark) {
            h1 {
                color: var(--color-primary-light);
            }
        }

        h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 1.25rem + 1.25vw, 2.25rem);
            font-weight: 600;
            line-height: 1.25;
            color: var(--color-primary);
            margin-top: var(--space-3xl);
            margin-bottom: var(--space-lg);
            padding-bottom: var(--space-sm);
            border-bottom: 2px solid var(--color-border-light);
            position: relative;
        }

        h2::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 60px;
            height: 2px;
            background: var(--color-accent);
        }

        h3 {
            font-family: var(--font-heading);
            font-size: clamp(1.25rem, 1.1rem + 0.75vw, 1.625rem);
            font-weight: 600;
            line-height: 1.35;
            color: var(--color-text);
            margin-top: var(--space-2xl);
            margin-bottom: var(--space-md);
        }

        h4 {
            font-family: var(--font-heading);
            font-size: clamp(1.1rem, 1rem + 0.5vw, 1.375rem);
            font-weight: 600;
            line-height: 1.4;
            color: var(--color-text);
            margin-top: var(--space-xl);
            margin-bottom: var(--space-md);
        }

        p {
            margin-bottom: var(--space-lg);
            color: var(--color-text);
        }

        /* Lead paragraph */
        article > p:first-of-type {
            font-size: clamp(1.125rem, 1rem + 0.5vw, 1.3125rem);
            line-height: 1.6;
            color: var(--color-text-muted);
        }

        /* Links */
        article a {
            color: var(--color-primary);
            text-decoration: underline;
            text-decoration-color: var(--color-primary-light);
            text-underline-offset: 3px;
            transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
        }

        article a:hover {
            color: var(--color-accent-dark);
            text-decoration-color: var(--color-accent);
        }

        /* Emphasis */
        strong {
            font-weight: 600;
            color: var(--color-text);
        }

        em {
            font-style: italic;
            color: var(--color-text-muted);
        }

        /* Lists */
        ul, ol {
            margin-bottom: var(--space-lg);
            padding-left: var(--space-xl);
        }

        li {
            margin-bottom: var(--space-sm);
            padding-left: var(--space-xs);
        }

       

        ul li {
            list-style-type: disc;
        }

        ul ul li {
            list-style-type: circle;
        }

        /* Blockquote */
        blockquote {
            margin: var(--space-xl) 0;
            padding: var(--space-lg) var(--space-xl);
            background: linear-gradient(135deg, var(--color-bg-alt) 0%, var(--color-surface) 100%);
            border-left: 4px solid var(--color-accent);
            border-radius: 0 8px 8px 0;
            box-shadow: var(--shadow-sm);
            position: relative;
        }

        blockquote::before {
            content: '"';
            position: absolute;
            top: -10px;
            left: var(--space-md);
            font-family: var(--font-heading);
            font-size: 4rem;
            color: var(--color-accent);
            opacity: 0.3;
            line-height: 1;
        }

        blockquote p {
            font-style: italic;
            font-size: 1.0625rem;
            margin-bottom: 0;
            position: relative;
        }

        blockquote cite {
            display: block;
            margin-top: var(--space-md);
            font-size: 0.875rem;
            font-style: normal;
            color: var(--color-text-muted);
        }

        blockquote cite::before {
            content: '— ';
        }

        /* Figures and images */
        figure {
            margin: var(--space-2xl) 0;
        }

        figure.article-image {
            background: var(--color-surface);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: box-shadow var(--transition-base), transform var(--transition-base);
        }

        figure.article-image:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-2px);
        }

        figure img {
            width: 100%;
            height: auto;
            display: block;
        }

        figcaption {
            padding: var(--space-md) var(--space-lg);
            font-size: 0.875rem;
            color: var(--color-text-muted);
            text-align: center;
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border-light);
        }

        /* Horizontal rule / Section divider */
        hr {
            border: none;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--color-border), transparent);
            margin: var(--space-3xl) 0;
        }

        /* Code (inline) */
        code {
            font-family: 'SF Mono', 'Consolas', monospace;
            font-size: 0.875em;
            background: var(--color-bg-alt);
            padding: 0.125em 0.375em;
            border-radius: 4px;
            color: var(--color-primary-dark);
        }

        @media (prefers-color-scheme: dark) {
            code {
                color: var(--color-primary-light);
            }
        }

        /* Tables */
        table {
            width: 100%;
            margin: var(--space-xl) 0;
            border-collapse: collapse;
            font-size: 0.9375rem;
        }

        th, td {
            padding: var(--space-md);
            text-align: left;
            border-bottom: 1px solid var(--color-border-light);
        }

        th {
            font-weight: 600;
            color: var(--color-primary);
            background: var(--color-bg-alt);
        }

        tr:hover td {
            background: var(--color-bg-alt);
        }

        /* Table of Contents styling */
        article > ul:first-of-type {
            background: var(--color-surface);
            border: 1px solid var(--color-border);
            border-radius: 12px;
            padding: var(--space-xl);
            margin: var(--space-2xl) 0;
            box-shadow: var(--shadow-sm);
        }

        article > ul:first-of-type li {
            list-style: none;
            margin-bottom: var(--space-md);
            padding-left: 0;
        }

        article > ul:first-of-type li::before {
            content: '';
            display: inline-block;
            width: 8px;
            height: 8px;
            background: var(--color-accent);
            border-radius: 50%;
            margin-right: var(--space-md);
            vertical-align: middle;
        }

        /* Call to action / Important note boxes */
        aside {
            background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
            color: var(--color-surface);
            padding: var(--space-xl);
            border-radius: 12px;
            margin: var(--space-2xl) 0;
            box-shadow: var(--shadow-md);
        }

        aside h4 {
            color: var(--color-accent-light);
            margin-top: 0;
        }

        aside p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 0;
        }

        /* Footer */
        footer {
            background: var(--color-bg-alt);
            border-top: 1px solid var(--color-border-light);
            padding: var(--space-2xl) var(--space-lg);
            margin-top: auto;
            min-height: var(--space-3xl);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            main {
                padding: var(--space-lg) var(--space-md) var(--space-2xl);
            }

            h2 {
                margin-top: var(--space-2xl);
            }

            h3 {
                margin-top: var(--space-xl);
            }

            blockquote {
                padding: var(--space-md) var(--space-lg);
                margin-left: 0;
                margin-right: 0;
            }

            blockquote::before {
                font-size: 3rem;
                top: -5px;
            }

            .hero-image {
                max-height: 40vh;
            }
        }

        @media (max-width: 480px) {
            :root {
                --space-lg: 1.25rem;
                --space-xl: 1.5rem;
                --space-2xl: 2rem;
                --space-3xl: 2.5rem;
            }

            ul, ol {
                padding-left: var(--space-lg);
            }
        }

        /* Print styles */
        @media print {
            header, footer, nav {
                display: none;
            }

            main {
                max-width: 100%;
                padding: 0;
            }

            h1, h2, h3, h4 {
                break-after: avoid;
            }

            figure, blockquote {
                break-inside: avoid;
            }

            a {
                text-decoration: none;
                color: var(--color-text);
            }

            a[href]::after {
                content: ' (' attr(href) ')';
                font-size: 0.75em;
                color: var(--color-text-muted);
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }

            html {
                scroll-behavior: auto;
            }
        }

        /* ==============================================
   STYLES DES IMAGES - Paris Sportifs Golf
   ============================================== */

/* Hero Image - Image principale après H1 */
.hero-image {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    max-height: 60vh;
    overflow: hidden;
    margin-bottom: var(--space-2xl, 3rem);
    position: relative;
    border-radius: 0;
}

.hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, var(--color-bg, #fafdf7));
    pointer-events: none;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Article Images - Images dans le contenu */
figure.article-image {
    margin: var(--space-2xl, 3rem) 0;
    background: var(--color-surface, #ffffff);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md, 0 4px 12px rgba(26, 95, 42, 0.1));
    transition: box-shadow 250ms ease, transform 250ms ease;
}

figure.article-image:hover {
    box-shadow: var(--shadow-lg, 0 8px 32px rgba(26, 95, 42, 0.12));
    transform: translateY(-2px);
}

figure.article-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px 12px 0 0;
}

/* Figcaption pour les images avec légendes */
figure.article-image figcaption {
    padding: var(--space-md, 1rem) var(--space-lg, 1.5rem);
    font-size: 0.875rem;
    color: var(--color-text-muted, #4a5d4a);
    text-align: center;
    background: var(--color-bg-alt, #f0f5ec);
    border-top: 1px solid var(--color-border-light, #e8f0e8);
}

/* Responsive - Tablette */
@media (max-width: 768px) {
    .hero-image {
        max-height: 40vh;
        margin-bottom: var(--space-xl, 2rem);
    }
    
    figure.article-image {
        margin: var(--space-xl, 2rem) 0;
        border-radius: 8px;
    }
    
    figure.article-image img {
        border-radius: 8px 8px 0 0;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .hero-image {
        max-height: 35vh;
    }
    
    figure.article-image {
        margin: var(--space-lg, 1.5rem) 0;
        border-radius: 8px;
    }
    
    figure.article-image figcaption {
        padding: var(--space-sm, 0.5rem) var(--space-md, 1rem);
        font-size: 0.8125rem;
    }
}

/* Dark mode */
@media (prefers-color-scheme: dark) {
    .hero-image::after {
        background: linear-gradient(to bottom, transparent 60%, var(--color-bg, #0f1a0f));
    }
    
    figure.article-image {
        background: var(--color-surface, #1a2b1a);
        box-shadow: var(--shadow-md, 0 4px 12px rgba(0, 0, 0, 0.4));
    }
    
    figure.article-image:hover {
        box-shadow: var(--shadow-lg, 0 8px 32px rgba(0, 0, 0, 0.5));
    }
    
    figure.article-image figcaption {
        background: var(--color-bg-alt, #162016);
        border-top-color: var(--color-border-light, #243824);
        color: var(--color-text-muted, #a8c0a8);
    }
}

/* Print styles */
@media print {
    .hero-image,
    figure.article-image {
        break-inside: avoid;
        box-shadow: none;
    }
    
    .hero-image::after {
        display: none;
    }
    
    figure.article-image img {
        max-height: 300px;
        object-fit: contain;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    figure.article-image {
        transition: none;
    }
    
    figure.article-image:hover {
        transform: none;
    }
}


/* =========================================
   Mobile Menu Styles
   ========================================= */

/* 1. The Overlay (Dark background behind the menu) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black */
    backdrop-filter: blur(3px); /* Optional: Blurs the content behind */
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-menu-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* 2. The Menu Container (Off-canvas sidebar) */
.mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 85%; /* Take up most of the screen width */
    max-width: 400px;
    height: 100vh;
    background-color: #0f1c15; /* Dark Green / Black (Matches your theme) */
    z-index: 999;
    padding: 20px 30px;
    transform: translateX(100%); /* Hidden to the right by default */
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); /* Smooth "ease-out" animation */
    box-shadow: -5px 0 15px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
}

.mobile-menu.is-open {
    transform: translateX(0); /* Slide in */
}

/* 3. The Close Button (X) */
.mobile-menu__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    align-self: flex-end; /* Align to the right */
    cursor: pointer;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* 4. Menu Links Styling */
.mobile-menu__inner ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu__inner ul li {
    margin-bottom: 0;
    list-style: none; /* Ensure no dots */
}

.mobile-menu__inner ul li a {
    display: block;
    padding: 15px 0;
    font-size: 18px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator line */
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.mobile-menu__inner ul li a:hover {
    color: #4CAF50; /* Green accent on hover */
    padding-left: 10px; /* Slight movement on hover */
}

/* 5. Burger Button Styling (The trigger) */
.burger {
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.burger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff; /* White lines */
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Optional: Turn burger into X when active (if desired) */
.burger.is-active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.burger.is-active span:nth-child(2) {
    opacity: 0;
}
.burger.is-active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* =========================================
   Footer Styles (4-Column Layout)
   ========================================= */

.site-footer {
    background-color: #0a110d; /* Very dark green/black matching your theme */
    color: #b0b0b0; /* Light grey text for readability */
    padding: 60px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 equal columns */
    gap: 40px;
    margin-bottom: 40px;
}

/* Headings in Gold/Yellow (like the reference image) */
.footer-heading {
    color: #f1c40f; /* Gold color */
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* List Styles */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 12px;
    list-style: none; /* Ensure no dots */
}

/* Links in footer */
.footer-list li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-list li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Copyright Bar */
.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
}

/* Responsive: Stack columns on mobile */
@media (max-width: 992px) {
    .footer-inner {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 576px) {
    .footer-inner {
        grid-template-columns: 1fr; /* 1 column on mobile */
        text-align: center;
    }
}

/* =========================================
   404 Page Styles
   ========================================= */

.error-404 {
    min-height: 60vh; /* Ensure it takes up vertical space */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f1c15; /* Dark Green bg */
    color: #ffffff;
    text-align: center;
    padding: 80px 20px;
}

.error-404-content {
    max-width: 600px;
    margin: 0 auto;
}

/* Big 404 Typography */
.error-code {
    font-size: 150px;
    font-weight: 900;
    line-height: 1;
    color: #4CAF50; /* Brand Green */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'Segoe UI', sans-serif; /* Or your theme font */
}

/* CSS Golf Ball (The '0' in 404) */
.golf-ball-wrapper {
    position: relative;
    width: 120px;
    height: 120px;
}

.golf-ball {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 35% 35%, #ffffff, #e0e0e0);
    border-radius: 50%;
    position: relative;
    box-shadow: inset -10px -10px 20px rgba(0,0,0,0.1);
    z-index: 2;
}

/* Dimples on the ball */
.golf-ball::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(#d1d1d1 15%, transparent 16%);
    background-size: 15px 15px;
    background-position: 0 0;
    opacity: 0.3;
    border-radius: 50%;
}

/* Shadow under the ball */
.shadow {
    position: absolute;
    bottom: -10px;
    left: 20%;
    width: 60%;
    height: 20px;
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    filter: blur(5px);
    z-index: 1;
}

/* Text Styles */
.page-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.page-content p {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 40px;
}

/* Button Style */
.btn-404 {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4CAF50; /* Green */
    color: #ffffff;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px; /* Slight roundness */
    transition: all 0.3s ease;
    border: 2px solid #4CAF50;
}

.btn-404:hover {
    background-color: transparent;
    color: #4CAF50;
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .error-code {
        font-size: 100px;
    }
    .golf-ball-wrapper {
        width: 80px;
        height: 80px;
    }
    .page-title {
        font-size: 1.8rem;
    }
}

body header.site-header .top-navigation-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
}

@media (min-width: 769px) {
    body header.site-header .top-navigation-bar .site-nav--desktop,
    body header.site-header .top-navigation-bar .site-nav {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        height: auto !important;
        overflow: visible !important;
    }
    
    body header.site-header .top-navigation-bar .site-nav--desktop ul {
        display: flex !important;
        flex-direction: row !important;
    }
    
    body header.site-header .top-navigation-bar .mobile-controls,
    body .mobile-menu-overlay,
    body .mobile-menu {
        display: none !important;
    }
}

@media (max-width: 768px) {
    body header.site-header .top-navigation-bar .site-nav--desktop,
    body header.site-header .top-navigation-bar .site-nav {
        display: none !important;
    }
    
    body header.site-header .top-navigation-bar .mobile-controls {
        display: block !important;
        margin-left: auto !important; 
    }
    
    body header.site-header .top-navigation-bar .mobile-controls .burger {
        display: flex !important;
    }
}

nav#mobile-menu .mobile-menu__inner ul {
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    width: 100%;
}

nav#mobile-menu .mobile-menu__inner ul li {
    width: 100%;
    display: block;
}