.muysl-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--navbar-height);
    z-index: 999999;
    background: transparent;
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
    letter-spacing: 0;
    transition: height 0.32s ease, background-color 0.32s ease, box-shadow 0.32s ease;
}

.muysl-navbar.text-page-navbar.scrolled {
    height: 76px;
    background-color: var(--color-black);
    box-shadow: 0 12px 44px var(--color-black);
}

.navbar-inner {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 var(--site-side-padding);
}

.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1000002;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%);
}

.logo a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1.5rem;
    font-weight: 300;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
}

.logo-img {
    display: block;
    width: auto;
    height: clamp(30px, 3.2vw, 40px);
    object-fit: contain;
    transition: height 0.32s ease;
}

.muysl-navbar.text-page-navbar.scrolled .logo-img {
    height: clamp(22px, 2.35vw, 30px);
}

.products-dropdown {
    position: absolute;
    top: 0;
    left: var(--site-side-padding);
    z-index: 1000004;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.products-toggle {
    position: relative;
    z-index: 1000007;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0;
    color: var(--color-soft-white);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: clamp(0.625rem, 0.8vw, 0.75rem);
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0;
    text-transform: uppercase;
    opacity: 1;
    transition: color 0.3s ease;
}

.products-toggle:hover {
    color: var(--color-white);
}

.products-menu {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000005;
    width: 33.333333vw;
    height: 100vh;
    height: 100svh;
    background-color: var(--color-black);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transform: translateX(-100%);
    transition: transform 0.52s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.32s ease, visibility 0.32s ease;
}

.products-dropdown:hover .products-menu,
.products-dropdown:focus-within .products-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.products-menu-inner {
    width: 100%;
    height: 100%;
    padding: 150px var(--site-side-padding) 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
}

.products-menu-label {
    margin: 26px 0 0;
    color: var(--color-gray);
    font-size: clamp(0.625rem, 0.8vw, 0.75rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-transform: uppercase;
    white-space: nowrap;
}

.products-menu-link,
.products-menu-link:link,
.products-menu-link:visited,
.products-menu-link:active {
    color: var(--color-soft-white);
    font-size: clamp(0.875rem, 1.25vw, 1.25rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.products-menu-link:hover {
    color: var(--color-white);
    text-decoration: none;
}

.products-menu-link.is-hidden,
.products-menu-label.is-hidden {
    display: none;
}

.menu-toggle {
    position: absolute;
    top: 50%;
    right: var(--site-side-padding);
    z-index: 1000003;
    display: flex;
    width: 42px;
    height: 42px;
    padding: 0;
    cursor: pointer;
    background: transparent;
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transform: translateY(-50%);
}

.menu-toggle .bar {
    display: block;
    width: 22px;
    height: 1px;
    background-color: var(--color-white);
    transform-origin: center;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 1000000;
    width: 100%;
    height: 100vh;
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: right 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

.nav-menu.active {
    right: 0;
}

.nav-wheel {
    width: 100%;
    height: clamp(220px, 36vh, 340px);
    overflow-y: auto;
    overflow-x: hidden;
    perspective: 900px;
    scroll-snap-type: y mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-black) 22%,
        var(--color-black) 50%,
        var(--color-black) 78%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        transparent 0%,
        var(--color-black) 22%,
        var(--color-black) 50%,
        var(--color-black) 78%,
        transparent 100%
    );
}

.nav-wheel::-webkit-scrollbar {
    display: none;
}

.nav-links {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(20px, 3.6vh, 40px);
    margin: 0;
    padding: 100px 20px;
    list-style: none;
}

.nav-links li {
    scroll-snap-align: center;
    transform-origin: center center;
    transition: opacity 0.2s ease, transform 0.2s ease;
    will-change: opacity, transform;
}

.nav-links a,
.nav-links a:link,
.nav-links a:visited,
.nav-links a:active {
    display: block;
    color: var(--color-white);
    font-size: clamp(0.875rem, 1.6vw, 1.375rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    white-space: nowrap;
    opacity: 1;
    transition: color 0.4s ease;
}

.nav-links a:hover {
    color: var(--color-gray);
    text-decoration: none;
}

.nav-footer {
    position: absolute;
    left: 50%;
    bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transform: translateX(-50%);
}

.nav-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.nav-footer-link,
.nav-footer-link:link,
.nav-footer-link:visited,
.nav-footer-link:active,
.nav-contact,
.nav-contact:link,
.nav-contact:visited,
.nav-contact:active {
    color: var(--color-soft-white);
    font-size: clamp(0.625rem, 0.8vw, 0.75rem);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: 0;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.nav-footer-link:hover,
.nav-contact:hover {
    color: var(--color-white);
    text-decoration: none;
}

.nav-socials {
    position: absolute;
    right: var(--site-side-padding);
    bottom: 80px;
    z-index: 1000002;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.nav-social-link,
.nav-social-link:link,
.nav-social-link:visited,
.nav-social-link:active {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--color-soft-white);
    text-decoration: none;
    transition: color 0.4s ease;
}

.nav-social-link:hover {
    color: var(--color-white);
    text-decoration: none;
}

.nav-social-link svg {
    display: block;
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.menu-toggle.active {
    gap: 0;
}

.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(0.5px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    transform: translateY(-0.5px) rotate(-45deg);
}

@media (max-width: 992px) {
    .logo-img {
        height: clamp(26px, 5vw, 36px);
    }

    .muysl-navbar.text-page-navbar.scrolled .logo-img {
        height: clamp(21px, 4vw, 28px);
    }

    .products-menu {
        width: 40vw;
    }

    .products-menu-inner {
        padding: 124px var(--site-side-padding) 40px;
        gap: 16px;
    }

    .products-menu-label {
        margin-top: 24px;
    }

    .products-menu-link,
    .products-menu-link:link,
    .products-menu-link:visited,
    .products-menu-link:active {
        font-size: clamp(0.8125rem, 1.8vw, 1.125rem);
    }

    .nav-wheel {
        height: clamp(220px, 34vh, 300px);
    }

    .nav-links {
        gap: clamp(18px, 3.2vh, 34px);
    }

    .nav-footer {
        bottom: 64px;
    }

    .nav-socials {
        right: var(--site-side-padding);
        bottom: 64px;
    }
}

@media (max-width: 480px) {
    .muysl-navbar.text-page-navbar.scrolled {
        height: 64px;
    }

    .logo-img {
        height: clamp(22px, 6.6vw, 30px);
    }

    .muysl-navbar.text-page-navbar.scrolled .logo-img {
        height: 22px;
    }

    .products-toggle {
        height: 40px;
        font-size: 0.5625rem;
    }

    .products-menu {
        width: 72vw;
    }

    .products-menu-inner {
        padding: 104px var(--site-side-padding) 34px;
        gap: 14px;
    }

    .products-menu-label {
        margin-top: 20px;
        font-size: 0.5625rem;
    }

    .products-menu-link,
    .products-menu-link:link,
    .products-menu-link:visited,
    .products-menu-link:active {
        font-size: 0.8125rem;
    }

    .menu-toggle {
        width: 40px;
        height: 40px;
    }

    .menu-toggle .bar {
        width: 20px;
    }

    .nav-wheel {
        height: clamp(200px, 30vh, 260px);
    }

    .nav-links {
        gap: clamp(16px, 3vh, 28px);
        padding: 90px 20px;
    }

    .nav-links a,
    .nav-links a:link,
    .nav-links a:visited,
    .nav-links a:active {
        font-size: clamp(0.875rem, 4.2vw, 1.125rem);
    }

    .nav-footer {
        bottom: 48px;
        gap: 10px;
    }

    .nav-footer-links {
        gap: 14px;
    }

    .nav-socials {
        left: 50%;
        right: auto;
        bottom: 94px;
        gap: 14px;
        transform: translateX(-50%);
    }

    .nav-social-link,
    .nav-social-link:link,
    .nav-social-link:visited,
    .nav-social-link:active {
        width: 16px;
        height: 16px;
    }

    .nav-social-link svg {
        width: 14px;
        height: 14px;
    }
}

@media (max-width: 320px) {
    .products-dropdown {
        display: none;
    }

    .logo-img {
        height: 20px;
    }

    .muysl-navbar.text-page-navbar.scrolled .logo-img {
        height: 18px;
    }

.menu-toggle {
    display: none;
    }

    .menu-toggle .bar {
        width: 17px;
    }

    .nav-wheel {
        height: clamp(180px, 34vh, 220px);
    }

    .nav-links {
        padding: 70px 14px;
        gap: 14px;
    }

    .nav-links a,
    .nav-links a:link,
    .nav-links a:visited,
    .nav-links a:active {
        font-size: 0.6875rem;
    }

    .nav-footer {
        bottom: 34px;
        gap: 8px;
    }

    .nav-footer-links {
        flex-wrap: wrap;
        gap: 10px;
        width: calc(100vw - 28px);
    }

    .nav-footer-link,
    .nav-footer-link:link,
    .nav-footer-link:visited,
    .nav-footer-link:active,
    .nav-contact,
    .nav-contact:link,
    .nav-contact:visited,
    .nav-contact:active {
        font-size: 0.5rem;
    }

    .nav-socials {
        display: none;
    }
}