:root {
    --header_color: #591615;
    --header_strip_color: #000000;

    --text_color_01: #ebd7c6;
    --text_color_02: #000000;
    --text_color_03: #591615;

    --border_color_01: #ebd7c6;
    --border_color_02: #000000;

    --background_color_01: #edede9;
    --background_color_02: #591615;
    --background_color_03: #000000;
}

#body {
    width: 100%;
    height: auto;
}

.lingerie_store_nav_wrapper {
    width: 95%;
    height: 60px;
    background: var(--header_color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-radius: 50px;
    margin: 0 auto 0 auto;
    padding: 0;
}

.logo_text {
    font-size: 24px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    text-align: right;
    line-height: 20px;
    color: var(--text_color_01);
    margin: 0 0 0 40px;
}

.mobile_menu_icon {
    display: none;
    visibility: hidden;
}

.nav_links {
    width: auto;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    list-style: none;
    gap: 50px;
    margin: 0 40px 0 0;
}

.nav_links li {
    display: inline;
}

.nav_links a {
    font-size: 14px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--text_color_01);
    text-decoration: none;
    text-transform: uppercase;
}

@media screen and (max-width: 450px) {
    .lingerie_store_nav_wrapper {
        gap: 0;
        position: relative;
    }

    .logo_text {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.0;
        margin: 0 0 0 20px;
        text-align: right;
    }

    .mobile_menu_icon {
        display: block;
        visibility: visible;
        width: 30px;
        height: 30px;
        background: none;
        border: none;
        padding: 0;
        margin: 0 30px 0 0;
        scale: 1.0;
        transition: transform 0.3s ease, opacity 0.2s ease;
    }

    .mobile_menu_icon img {
        width: 100%;
    }

    .menu_icon.animate {
        opacity: 0;
        transform: scale(0.3) rotate(90deg);
    }

    .nav_links {
        position: absolute;
        top: 80px;
        left: 50%;
        width: 330px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px;
        background: rgba(89, 22, 21, 0.95);
        backdrop-filter: blur(10px);
        border-radius: 20px;
        box-shadow:
            0 10px 30px rgba(0, 0, 0, 0.25),
            0 2px 10px rgba(0, 0, 0, 0.15);
        z-index: 200;
        opacity: 0;
        visibility: hidden;
        transform: translateX(-50%) translateY(-15px);
        transition:
            opacity 0.25s ease,
            transform 0.25s ease,
            visibility 0.25s;
    }
    
    .nav_links.active {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(-5px);
    }

    .nav_links li {
        display: block;
        padding: 0;
        margin: 0 30px 0 0;
    }

    .nav_links li:first-child {
        margin: 30px 30px 0 0;
    }

    .nav_links li:last-child {
        margin: 0 30px 30px 0;
    }
    
    .nav_links a {
        font-size: 18px;
        font-weight: 300;
        margin: 0 0 0 0;
    }
}