.mi-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #b6b3b3;
    color: #000000;
    padding: 20px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-sizing: border-box;
}

.logo-container img {
    width: 100px;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    nav ul li {
        position: relative;
    }

        nav ul li a {
            display: block;
            padding: 10px 20px;
            text-decoration: none;
            color: #000000;
            font-weight: bold;
        }

            nav ul li a:hover {
                color: gray;
            }

.dropdown {
    display: none;
    position: absolute;
    background-color: #bdbdbd;
    padding: 10px;
    z-index: 999;
}

    .dropdown li {
        display: block;
    }

.user-cart {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

    .user-cart a {
        text-decoration: none;
        color: #000000;
    }

    .user-cart button {
        padding: 10px 20px;
        background-color: #000000;
        border: none;
        color: #ffffff;
        cursor: pointer;
    }

        .user-cart button:hover {
            background-color: #017df1;
        }

/* RESPONSIVE HEADER */
@media (max-width: 768px) {
    .mi-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
    }

        nav ul li a {
            padding: 10px;
        }

    .user-cart {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-top: 10px;
    }

        .user-cart button,
        .user-cart a {
            width: 100%;
        }
}
