
.top-menu-container {
    display: grid;
    grid-template-columns: 1fr 1fr 4fr 1fr 1fr;
    align-items: center;
    justify-content: center;
    padding: 4px 16px 4px 16px;
    background-color: var(--topMenuBgColor);
    box-shadow: var(--topMenuBoxShadow);
    z-index: 999;
}

/* all icons */
.hamburger-icon,
.search-icon,
.profile-icon,
.cart-icon,
.brand-logo,
.cart-icon-container {
    cursor: pointer;
    display: flex;
}

/* all svg */
.hamburger-icon svg,
.search-icon svg,
.profile-icon svg,
.cart-icon svg {
    height: 28px;
    width: auto;
    fill: none;
    stroke: var(--topMenuColor);
    stroke-width: 2px;
    stroke-linecap: round;
}

/* hamburger */
.hamburger-icon {
    justify-content: flex-start;
}

/* search */
.search-icon {
    justify-content: flex-start;
}

/* brand-logo */
.brand-logo {
    justify-content: center;
}

.brand-logo svg {
    height: 50px;
    width: auto;
}

.brand-logo .text0 {
    letter-spacing: 0;
    fill: var(--brandLogoTextColor);
    font-family: "Michroma";
    font-size: 100px;
    font-weight: 400;
}

/* profile */
.profile-icon {
    justify-content: flex-end;
}

/* cart */
.cart-icon-container {
    position: relative;
    justify-content: flex-end;
}

#cart-count {
    display: flex;
    position: absolute;

    justify-content: center;
    align-items: center;
    text-align: center;

    top: -6px;
    right: -4px;

    width: 20px;
    height: 20px;

    border-radius: 50%;
    background-color: #f00;
    color: #fff;
    font-size: 14px;
    font-weight: normal;
}

@media (max-width: 600px) {
    .top-menu-container {
        padding: 4px 8px 4px 8px;
    }

    #cart-count {
        width: 16px;
        height: 16px;

        top: -6px;
        right: -4px;

        font-size: 12px;
    }

    .brand-logo svg {
        height: 40px;
        width: auto;
    }

    .hamburger-icon svg,
    .search-icon svg,
    .profile-icon svg,
    .cart-icon svg {
        height: 24px;
        width: auto;
    }
}
