    :root {
        --brand-red: #E30614;
        --gray-bg: #A6A6A6;
        --white: #fff;
        --font-main: "Frutiger LT Condensed", sans-serif;
    }

    header.header {
        position: relative;
        background: transparent;
        z-index: 1000;
        transition: background 0.3s ease;
    }

    .header-bg {
        background: transparent;
        max-width: 1600px;
        margin: 0 auto;
        padding: 20px 40px;
        position: relative;
        display: flex;
        justify-content: space-evenly;
        align-items: flex-start;
        transition: background 0.3s ease;
        z-index: 10;
    }

    header.header.active .header-bg {
        background: var(--gray-bg);
        height: 230px;
    }

    .nav-left {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .nav-left-top {
        display: flex;
        align-items: center;
        gap: 25px;
    }

    .nav-left-top a {
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    .nav-left-top a:hover,
    .nav-left-top a.active {
        color: var(--brand-red);
    }

    header.header.active .search-box {
        opacity: 0;
        pointer-events: none;
    }

    .search-box {
        position: relative;
        width: 100%;
        z-index: 1002;
    }

    .search-box input {
        width: 100%;
        border-radius: 10px;
        border: none;
        padding: 0.5rem 2.5rem 0.5rem 1rem;
        outline: none;
        font-size: 0.95rem;
    }

    .search-box button {
        position: absolute;
        right: 0.3rem;
        top: 50%;
        transform: translateY(-50%);
        background-color: #d40000;
        border: none;
        color: #fff;
        border-radius: 10px;
        width: 3rem;
        height: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .search-box input::placeholder {
        color: #E30614;
        opacity: 1;
        font-family: "Frutiger LT Condensed", sans-serif !important;
        font-weight: 400;
    }

    .nav-right {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .head-logo {
        background: #fff;
        padding: 10px !important;
        border-radius: 0px 0px 100px 100px;
        margin-top: -53px;
        z-index: 1003;
        position: relative;
    }

    .head-logo img {
        width: 140px;
        height: 140px;
        margin-top: 25px;
    }

    .rightm {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-right: 30px !important;
    }

    .rightm a {
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        font-size: 18px;
        transition: color 0.3s ease;
    }

    .rightm a:hover {
        color: var(--brand-red);
    }

    .nav-right>a,
    .cart a {
        color: var(--white);
        font-size: 15px;
        text-decoration: none;
    }

    .cart a {
        font-size: 10px !important;
    }

    .submenu-container {
        position: relative;
    }

    .bi::before {
        font-size: 18px;
    }

    .submenu {
        display: none;
        position: absolute;
        top: calc(100% + 20px);
        background: var(--gray-bg);
        border-top: 2px solid var(--white);
        color: var(--white);
        padding: 10px 0;
        border-bottom-left-radius: 25px;
        border-bottom-right-radius: 25px;
        z-index: 5;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.2s ease;
        left: 0 !important;
        right: 0;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: none;
    }

    .submenu-content {
        display: flex;
        justify-content: start;
        align-items: flex-start;
        gap: 50px;
        max-width: 100vw;
        margin: 0 auto;
        width: 100vw;
    }

    .submenu a {
        display: block;
        color: var(--white);
        text-decoration: none;
        font-size: 14px;
        line-height: 1.4;
        padding: 2px 0;
        text-align: left;
    }

    .submenu a:hover {
        color: var(--brand-red);
    }

    .submenu-left,
    .submenu-right {
        display: flex;
        flex-direction: column;
        min-width: auto;
        text-align: left;
    }

    .divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.5);
        margin: 8px 0;
    }

    .submenu {
        z-index: 9999 !important;
    }

    .submenu-container:hover>.submenu {
        display: block;
        opacity: 1;
        pointer-events: all;
    }

    .submenu-container:hover>a {
        color: var(--brand-red);
    }

    header.header {
        position: relative;
    }

    .submenu-container::after {
        content: '';
        position: absolute;
        left: 0;
        right: 0;
        height: 40px;
        width: 100vw;
        bottom: -20px;
        background: transparent;
        z-index: 9998;
    }

    /* Mobile Sidebar Styles */
    .mobile-sidebar {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--gray-bg);
        z-index: 2000;
        transition: right 0.3s ease;
        overflow-y: auto;
        padding: 20px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    .mobile-sidebar.open {
        right: 0;
    }

    .mobile-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
        padding-bottom: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    }

    .mobile-sidebar-header .logo {
        width: 100px;
        height: auto;
    }

    .mobile-sidebar-close {
        background: none;
        border: none;
        color: var(--white);
        font-size: 1.5rem;
        cursor: pointer;
    }

    .mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .mobile-nav a {
        color: var(--white);
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .mobile-nav a:hover {
        color: var(--brand-red);
    }

    .mobile-submenu {
        display: none;
        padding-left: 15px;
        margin-top: 10px;
    }

    .mobile-submenu a {
        font-size: 16px;
        font-weight: 500;
        border-bottom: none;
        padding: 8px 0;
    }

    .mobile-submenu-toggle {
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--white);
        text-decoration: none;
        font-weight: 700;
        font-size: 18px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        cursor: pointer;
    }

    .mobile-submenu-toggle::after {
        content: '\25BC';
        font-size: 0.8rem;
        transition: transform 0.3s;
    }

    .mobile-submenu-toggle.open::after {
        transform: rotate(180deg);
    }

    .mobile-submenu-toggle.open+.mobile-submenu {
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .mobile-search {
        margin: 20px 0;
    }

    .mobile-search input {
        width: 100%;
        border-radius: 10px;
        border: none;
        padding: 0.5rem 1rem;
        outline: none;
        font-size: 0.95rem;
    }

    .mobile-search input::placeholder {
        color: #E30614;
        opacity: 1;
        font-family: "Frutiger LT Condensed", sans-serif !important;
        font-weight: 400;
    }

    .mobile-sidebar-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1999;
        display: none;
    }

    .mobile-sidebar-overlay.active {
        display: block;
    }

    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: none;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 2rem;
        color: var(--white);
        cursor: pointer;
        z-index: 2001;
    }

    @media (max-width: 1199px) {
        .mobile-menu-toggle {
            display: block;
        }

        .search-box button {
            position: absolute;
            right: 3.3rem;
        }

        .header-bg .nav-left,
        .header-bg .nav-right {
            display: none;
        }

        .head-logo {
            margin-top: 10px !important;
            z-index: 1003;
        }

        .submenu-container>a::after {
            content: "\25BC";
            font-size: 0.7rem;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .submenu-container.open>a::after {
            transform: rotate(180deg);
        }

        .submenu {
            display: none !important;
        }

        .nav-left-top,
        .rightm {
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }


        .search-box input {
            width: 90%;
        }

        .header-bg {
            padding: 15px 20px;
            flex-direction: column;
            align-items: center;
        }

        .submenu-content {
            flex-direction: column;
            gap: 10px;
            padding: 0 15px;
            max-width: 100%;
            box-sizing: border-box;
        }

        .submenu-left,
        .submenu-right {
            flex-direction: column;
            text-align: left;
            width: 100%;
        }

        .head-logo img {
            width: 85px;
            height: 85px;
            margin-top: 25px;
        }
    }

    @media (max-width: 992px) {
        .header-bg {
            flex-direction: column;
            align-items: center;
        }

        .nav-left-top,
        .rightm {
            flex-wrap: wrap;
            justify-content: center;
        }

        .search-box input {
            width: 200px;
        }
    }