@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/Ivy_Mode/IvyMode-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/Ivy_Mode/IvyMode-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/Ivy_Mode/IvyMode-LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/Ivy_Mode/IvyMode-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'IvyMode';
    src: url('../fonts/Ivy_Mode/IvyMode-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'MonaSans';
    src: url('../fonts/Mona_Sans/MonaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'MonaSans';
    src: url('../fonts/Mona_Sans/MonaSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'MonaSans';
    src: url('../fonts/Mona_Sans/MonaSans-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_LightItalic.ttf') format('truetype');
    font-weight: 300;
    font-style: italic;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter/Inter_ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
}

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

html {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    margin: 0;
    background-color: #010101;
    color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'IvyMode', serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
}

p, a, span, li, button, input, label {
    margin: 0;
    padding: 0;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 1.67vw 8.54vw;
}

.header-logo img {
    width: 4.32vw;
    height: auto;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 2vw;
    margin-left: auto;
    margin-right: 2vw;
    font-family: 'MonaSans', sans-serif;
}

.header-nav-link {
    font-size: 0.625vw;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.3s ease;
}

.header-nav-link:hover,
.header-nav-link.is-active {
    opacity: 1;
}

.header-cart {
    display: flex;
    align-items: center;
    position: relative;
}

.header-cart svg {
    width: 1.04vw;
    height: auto;
    transition: opacity 0.3s ease;
}

.header-cart:hover svg {
    opacity: 0.7;
}

.cart-count {
    position: absolute;
    top: -0.42vw;
    right: -0.52vw;
    background: #ffffff;
    color: #010101;
    font-size: 0.47vw;
    font-weight: 600;
    min-width: 0.94vw;
    height: 0.94vw;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0 0.16vw;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.42vw;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    color: #ffffff;
    font-size: 0.625vw;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.menu-toggle svg {
    width: 1.74vw;
    height: auto;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #010101;
    z-index: 1000;
    visibility: hidden;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0.6s;
    display: flex;
    flex-direction: column;
}

.menu-overlay.active {
    visibility: visible;
    clip-path: inset(0 0 0 0);
}

.menu-overlay-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5.13vw 6.15vw;
    flex-shrink: 0;
}

.menu-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
}

.menu-close:hover {
    opacity: 0.7;
}

.menu-close svg {
    width: 4.36vw;
    height: auto;
}

.menu-overlay-logo img {
    width: 21.28vw;
    height: auto;
}

.menu-overlay-cart {
    position: relative;
}

.menu-overlay-cart svg {
    width: 5.13vw;
    height: auto;
    transition: opacity 0.3s ease;
}

.menu-overlay-cart:hover svg {
    opacity: 0.7;
}

.menu-nav {
    display: flex;
    flex-direction: column;
    padding: 5vw 11.79vw;
    gap: 2.31vw;
    flex: 1;
}

.menu-link {
    font-family: 'IvyMode', serif;
    font-size: 5vw;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.2;
    transition: opacity 0.3s ease;
}

.menu-link:hover,
.menu-link.is-active {
    opacity: 0.6;
}

.menu-social {
    display: flex;
    gap: 8.72vw;
    padding: 0 11.79vw 10.26vw;
}

.menu-social a {
    display: flex;
    align-items: center;
}

.menu-social img {
    width: 5.9vw;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .site-header {
        padding: 5.13vw 6.15vw;
        justify-content: space-between;
    }

    .header-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .header-logo img {
        width: 21.28vw;
    }

    .header-nav {
        display: none;
    }

    .header-cart {
        display: flex;
    }

    .header-cart svg {
        width: 5.13vw;
    }

    .menu-toggle {
        display: flex;
        font-size: 3.08vw;
        gap: 1.03vw;
        order: -1;
    }

    .menu-toggle svg {
        width: 8.72vw;
    }

    .menu-overlay-bar {
        padding: 5.13vw 6.15vw;
    }

    .menu-close svg {
        width: 4.36vw;
    }

    .menu-overlay-logo img {
        width: 21.28vw;
    }

    .menu-overlay-cart svg {
        width: 5.13vw;
    }

    .cart-count {
        top: -1.5vw;
        right: -1.5vw;
        font-size: 2vw;
        min-width: 4vw;
        height: 4vw;
        padding: 0 0.5vw;
    }

    .menu-nav {
        padding: 10vw 11.79vw;
        gap: 0;
        flex: unset;
    }

    .menu-link {
        font-size: 7vw;
        padding: 5.64vw 0;
    }

    .menu-social {
            gap: 2vw;
        padding: 0 11.79vw 0vw;
        margin-top: 3vw;
    }

    .menu-social img {
        width: 5.9vw;
    }
}
