.mobile-menu-container {
    display: flex;
    visibility: hidden;
    position: fixed;
    width: 100vw;
    height: 100%;
    z-index: 10;
    backdrop-filter: blur(3px);
    background-color: rgba(34, 34, 34, 0.308);
    font-family: "Inter", sans-serif;
    align-items: flex-end;
    justify-content: center;
    transition: opacity 0.1s ease-in-out;
    opacity: 0;
}

.menu-overlay {
    background: #fff;
    width: 90%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    padding: 16px;
    position: relative;
    margin-bottom: 24px;
}

.menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.lang-select {
    display: flex;
    align-items: center;
    background: #EAEAEA;
    padding: .8rem 1rem;
    border-radius: 100px;
    font-size: 14px;
    cursor: pointer;
    margin: 0;
}

.lang-arrow-mobile {
    width: 12px;
}

.lang-select img {
    height: auto;
    margin: 0 4px;
}

.lang-select .arrow {
    margin-left: 4px;
    font-size: 10px;
    display: flex;
    align-items: center;
}

.close-btn {
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
}

.user-info {
    position: relative;
    margin-bottom: 24px;
    height: 3rem;
}

.inner-user-info {
    pointer-events: none;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 100%;
}

.user-icon {
    background: #ffe6b3;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ff9f1c;
    outline: 15px solid #fff;
    position: relative;
    z-index: -1;
}

.mobile-icons {
    width: 1.4rem;
    margin: 0 .8rem;
}


.username-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    margin: auto;
    font-size: 16px;
    color: #333;
    position: relative;
    z-index: 10;
}

.username-text {
    padding: 1rem 1.2rem;
    background-color: #EAEAEA;
    border-radius: 1rem;
    font-weight: 600;
}

.menu-list {
    list-style: none;
    padding: 0;
}

.menu-list li {
    margin-bottom: 12px;
}

.menu-link {
    display: flex;
    width: 100%;
    height: 3.8rem;
    align-items: center;
    background: #EAEAEA;
    padding: 1rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    color: #333;
    font-size: 16px;
    justify-content: space-between;
    font-weight: 600;
}

.logout {
    color: #e63946;
    transition: background-color 0.1s ease-in-out;
}

.mobile-login>a {
    background-color: #FFEBCD;
}

.dropdown-mobile {
    left: 0 !important;
    transform: translate(0, 0) !important;
}

@media (max-width: 900px) {

    .site-header {
        padding: 1vw 2vw;
    }

    .header-top-content {
        padding: 0;
    }

    .hamburger-menu {
        display: flex;
    }

    .profile-dropdown {
        display: none;
    }

    .lang {
        display: none;
    }

    .header-left {
        width: auto;
    }

    .header-search {
        width: 100%;
    }

    .header-right {
        justify-content: flex-end;
        width: auto;
        min-width: auto;
    }

    .shipping-adresse {
        display: none;
    }

    .header-navigation {
        display: none;
    }

    .sep-line {
        display: none;
    }

    .mobile-menu-container.open {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.1s ease-in-out;
    }
}

.mobile-search-bar {
    width: 100%;
    height: 2.6rem;
    padding: .4rem 2rem;
    box-sizing: content-box;
    display: none;
}

.mobile-search-bar.hide {
    display: none;
}

/* FAB styles */
.fab {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
    background-color: #ff9f1c;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.fab img {
    width: 24px;
    height: 24px;
}

@media (max-width: 500px) {
    .header-search {
        display: none;
    }

    .fab {
        opacity: 1;
        visibility: visible;
    }

    .mobile-search-bar {
        display: block;
    }
}