.cart-push-root {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 330px;
    max-width: calc(100vw - 24px);
    pointer-events: none;
}

.cart-push {
    display: grid;
    grid-template-columns: 60px 1fr 24px;
    gap: 10px;
    align-items: center;
    min-height: 100px;
    padding: 10px;
    background: var(--black);
    color: var(--white);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .22s ease, transform .22s ease;
    pointer-events: auto;
}

.cart-push.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.cart-push__image {
    width: 60px;
    height: 60px;
    background: var(--white);
    object-fit: contain;
}

.cart-push__label {
    margin-bottom: 8px;
    font-size: 12px;
    line-height: 1.25;
    color: var(--milk);
}

.cart-push__title {
    max-height: 44px;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--white);
}

.cart-push__props {
    margin-top: 8px;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 500;
    color: var(--milk);
}

.cart-push__close {
    align-self: start;
    width: 24px;
    height: 24px;
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--text-secondary-light);
    font-size: 22px;
    line-height: 22px;
    cursor: pointer;
}

.cart-push__close:hover {
    color: var(--white);
}

.cart-push--error {
    background: #7f1d1d;
}

.cart-push--error .cart-push__label {
    color: var(--milk);
}

.cart-push--error .cart-push__title {
    color: var(--white);
}

.cart-push--favorite-add,
.cart-push--favorite-remove {
    position: relative;
    grid-template-columns: 1fr 24px !important;
    min-height: 86px;
    padding: 18px 18px 18px 22px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .24);
}

.cart-push--favorite-add .cart-push__label,
.cart-push--favorite-remove .cart-push__label {
    color: var(--text-secondary-light);
}

.cart-push--favorite-add .cart-push__title,
.cart-push--favorite-remove .cart-push__title {
    color: var(--white);
}

.cart-push--favorite-add .cart-push__title::before,
.cart-push--favorite-remove .cart-push__title::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: -3px;
    background-color: currentColor;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.cart-push--favorite-add .cart-push__title::before {
    color: #d6a84f;

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 50 50'%3E%3Cpath fill='currentColor' d='M17 12c-3.9 0-7 3.1-7 7c0 5.1 3.2 8.5 15 18.1c11.8-9.6 15-13 15-18.1c0-3.9-3.1-7-7-7c-3.5 0-5.4 2.1-6.9 3.8L25 17.1l-1.1-1.3C22.4 14.1 20.5 12 17 12Z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 50 50'%3E%3Cpath fill='currentColor' d='M17 12c-3.9 0-7 3.1-7 7c0 5.1 3.2 8.5 15 18.1c11.8-9.6 15-13 15-18.1c0-3.9-3.1-7-7-7c-3.5 0-5.4 2.1-6.9 3.8L25 17.1l-1.1-1.3C22.4 14.1 20.5 12 17 12Z'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cart-push--favorite-remove .cart-push__title::before {
    color: var(--text-secondary-light);

    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 50 50'%3E%3Cpath fill='currentColor' d='m25 39.7l-.6-.5C11.5 28.7 8 25 8 19c0-5 4-9 9-9c4.1 0 6.4 2.3 8 4.1c1.6-1.8 3.9-4.1 8-4.1c5 0 9 4 9 9c0 6-3.5 9.7-16.4 20.2zM17 12c-3.9 0-7 3.1-7 7c0 5.1 3.2 8.5 15 18.1c11.8-9.6 15-13 15-18.1c0-3.9-3.1-7-7-7c-3.5 0-5.4 2.1-6.9 3.8L25 17.1l-1.1-1.3C22.4 14.1 20.5 12 17 12'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 50 50'%3E%3Cpath fill='currentColor' d='m25 39.7l-.6-.5C11.5 28.7 8 25 8 19c0-5 4-9 9-9c4.1 0 6.4 2.3 8 4.1c1.6-1.8 3.9-4.1 8-4.1c5 0 9 4 9 9c0 6-3.5 9.7-16.4 20.2zM17 12c-3.9 0-7 3.1-7 7c0 5.1 3.2 8.5 15 18.1c11.8-9.6 15-13 15-18.1c0-3.9-3.1-7-7-7c-3.5 0-5.4 2.1-6.9 3.8L25 17.1l-1.1-1.3C22.4 14.1 20.5 12 17 12'/%3E%3C/svg%3E");

    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.cart-push--favorite-add .cart-push__close,
.cart-push--favorite-remove .cart-push__close {
    color: var(--text-secondary-light);
}

.cart-push--favorite-add .cart-push__close:hover,
.cart-push--favorite-remove .cart-push__close:hover {
    color: var(--white);
}

@media (max-width: 600px) {
    .cart-push-root {
        top: 12px;
        right: 12px;
        left: 12px;
        width: auto;
    }

    .cart-push {
        grid-template-columns: 70px 1fr 22px;
        min-height: 96px;
        padding: 12px;
        gap: 12px;
    }

    .cart-push__image {
        width: 70px;
        height: 70px;
    }

    .cart-push__title {
        font-size: 15px;
    }
}