#header .language-switcher {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 14px;
    color: #fff;
    display: flex;
    flex-shrink: 0;
    font-size: 10px;
    font-weight: 600;
    gap: 2px;
    line-height: 1;
    margin-left: 10px;
    padding: 2px;
}

#header .language-switcher__item {
    align-items: center;
    border-radius: 10px;
    display: flex;
    height: 22px;
    justify-content: center;
    min-width: 24px;
    padding: 0 4px;
    transition: background-color .2s ease, color .2s ease;
}

#header a.language-switcher__item:hover,
#header .language-switcher__item.active {
    background: #fff;
    color: #323232;
}

@media screen and (min-width: 1200px) {
    #header .language-switcher {
        border-color: #dedede;
        color: #1b1b1b;
        left: 5vw;
        margin-left: 0;
        position: absolute;
        top: 7px;
    }

    #header a.language-switcher__item:hover,
    #header .language-switcher__item.active {
        background: #323232;
        color: #fff;
    }
}

@media screen and (min-width: 1920px) {
    #header .language-switcher {
        left: 6vw;
    }
}

.product-item,
.product__item,
.product-page .gallery-holder {
    position: relative;
}

.wishlist-toggle {
    align-items: center;
    background: rgba(255, 255, 255, .94);
    border: 1px solid #eaeaea;
    border-radius: 50%;
    color: #1b1b1b;
    display: flex;
    height: 40px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: background-color .2s ease, border-color .2s ease,
        color .2s ease, opacity .2s ease, transform .2s ease;
    width: 40px;
    z-index: 12;
}

.wishlist-toggle svg {
    height: 22px;
    pointer-events: none;
    width: 22px;
}

.wishlist-toggle svg path {
    fill: transparent;
    stroke: currentColor;
    transition: fill .2s ease, stroke .2s ease;
}

.wishlist-toggle:hover {
    border-color: #1b1b1b;
    transform: scale(1.04);
}

.wishlist-toggle.active {
    border-color: #ff3030;
    color: #ff3030;
}

.wishlist-toggle.active svg path {
    fill: #ff3030;
}

.wishlist-toggle.loading {
    opacity: .55;
}

.product-page .gallery-holder > .wishlist-toggle {
    right: 14px;
    top: 14px;
}

#header .wish-link {
    color: #fff;
}

#header .wish-link.active .icon path {
    fill: #ff3030;
    stroke: #ff3030;
}

.wishlist-toast {
    background: #323232;
    bottom: 24px;
    color: #fff;
    left: 50%;
    max-width: calc(100% - 40px);
    opacity: 0;
    padding: 12px 18px;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, 18px);
    transition: opacity .2s ease, transform .2s ease;
    z-index: 10000;
}

.wishlist-toast.error {
    background: #9f2634;
}

.wishlist-toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media screen and (max-width: 479px) {
    #header {
        padding-left: 12px;
        padding-right: 12px;
    }

    #header .nav-open {
        width: 24px;
    }

    #header .language-switcher {
        margin-left: 6px;
    }

    #header .language-switcher__item {
        height: 20px;
        min-width: 20px;
        padding-left: 2px;
        padding-right: 2px;
    }

    #header .logo-header {
        margin-left: 8px;
        width: 76px;
    }

    #header .login,
    #header .wish-link {
        margin-left: 10px;
    }

    #header .cart-link {
        margin-left: 14px;
    }

    .wishlist-toggle {
        height: 36px;
        right: 8px;
        top: 8px;
        width: 36px;
    }
}

@media screen and (min-width: 1200px) {
    #header .wish-link {
        color: #fff;
    }

    .wishlist-toggle {
        right: 14px;
        top: 14px;
    }
}
