[data-basket-btn="add"] .basket_btn_remove {
    display: none;
}

[data-basket-btn="remove"] .basket_btn_add {
    display: none;
}

[data-favorite-btn="remove"] {
    opacity: 1 !important;
    visibility: visible !important;
}

[data-favorite-btn="remove"]:before {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='24' height='23' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 21l-1.595-1.439C4.74 14.471 1 11.114 1 6.995 1 3.638 3.662 1 7.05 1c1.914 0 3.751.883 4.95 2.278A6.612 6.612 0 0116.95 1C20.338 1 23 3.638 23 6.995c0 4.12-3.74 7.476-9.405 12.577L12 21z' fill='url(%23paint0_linear)' stroke='url(%23paint1_linear)' stroke-width='1.5' stroke-linecap='square'/%3E%3Cdefs%3E%3ClinearGradient id='paint0_linear' x1='8.19' y1='-4.833' x2='29.897' y2='13.382' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F04954'/%3E%3Cstop offset='1' stop-color='%23FA939F'/%3E%3C/linearGradient%3E%3ClinearGradient id='paint1_linear' x1='8.19' y1='-4.833' x2='29.897' y2='13.382' gradientUnits='userSpaceOnUse'%3E%3Cstop stop-color='%23F04954'/%3E%3Cstop offset='1' stop-color='%23FA939F'/%3E%3C/linearGradient%3E%3C/defs%3E%3C/svg%3E") !important;
}

.checkbox.checkbox-tagged input {
    display: none;
}

.checkbox.checkbox-tagged .checkbox__label {
    font-size: 14px;
    cursor: pointer;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    margin: 4px 6px 4px 0;
    transition: border-color .3s;
    display: flex;
    align-items: center;
}

.checkbox.checkbox-tagged .checkbox__label:before, .checkbox.checkbox-tagged .checkbox__label:after {
    display: none;
}

.checkbox.checkbox-tagged:not(:last-child) {
    margin-bottom: 0;
}

.checkbox-tagged .checkbox__input:checked + .checkbox__label {
    color: #ffffff;
    background: #f04954;
}

@keyframes fadeIn {
    from {
        opacity: 0; /* Начальная прозрачность (невидимый) */
        transform: translateY(20px); /* Небольшое смещение вниз */
        /*transform: scale(0.95); /* Альтернатива: небольшое уменьшение размера */
    }
    to {
        opacity: 1; /* Конечная прозрачность (видимый) */
        transform: translateY(0); /* Возвращение в исходное положение */
        /*transform: scale(1); /* Альтернатива: исходный размер */
    }
}

#catalog_selected_items .catalog-content__filters-item, .checkbox.checkbox-tagged {
    animation: fadeIn 0.9s ease-out forwards;
}

.card {
    /* Ваши основные стили для карточки товара (ширина, отступы, тени и т.д.) */
    /* ... */

    /* Применяем анимацию при появлении */
    animation: fadeIn 0.9s ease-out forwards;
    /*
    * fadeIn - название анимации
    * 0.5s - длительность анимации
    * ease-out - функция сглаживания (скорость)
    * forwards - сохраняет конечное состояние анимации (opacity: 1, transform: translateY(0))
    */
}

[data-basket-btn="remove"].cart-btn {
    color: #fff;
}

[data-basket-btn="remove"].cart-btn > :after {
    filter: invert(1);
}

[data-basket-btn="remove"].cart-btn:before,
.active.cart-btn:before,
.cart-btn:active:before {
    opacity: 1;
}


.checkout-grid-container {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
    padding-top: 15px;
}

* {
    box-sizing: border-box;
}

.checkout-wrapper {
    max-width: 1300px;
    margin: 40px auto;
    background: #fff;
    padding: 50px 60px;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

@media (max-width: 1200px) {
    .checkout-wrapper {
        margin: 20px;
        padding: 30px;
    }
}

h2.checkout-title {
    font-size: 28px;
    margin-bottom: 40px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eaeaea;
    font-weight: 700;
}

.form-grid-container {
    display: grid;
    grid-template-columns: 250px 1fr;
    column-gap: 40px;
    row-gap: 30px;
    align-items: start;
}

.grid-label {
    text-align: right;
    padding-top: 12px;
    font-weight: 600;
    font-size: 15px;
    color: #222;
}

.grid-input-area {
    width: 100%;
    position: relative;
}

.required {
    color: #EA5A5A;
    font-weight: bold;
}

.modern-input, .modern-select, .modern-textarea {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    outline: none;
    transition: all 0.2s;
    color: #333;
}

.modern-input:focus, .modern-textarea:focus {
    border-color: #EA5A5A;
    box-shadow: 0 0 0 3px rgba(234, 90, 90, 0.1);
}

.modern-textarea {
    height: 100px;
    padding-top: 12px;
    resize: vertical;
}

.modern-input[readonly] {
    background-color: #f2f2f2;
    color: #666;
    border-color: #e0e0e0;
    cursor: default;
}

.select-arrow-style {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-color: #fff;
    cursor: pointer;
    padding-right: 40px;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.select-arrow-style:focus {
    border-color: #EA5A5A;
}

.payment-pulse {
    border: 1px solid #EA5A5A;
    animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
    0% {
        box-shadow: 0 0 0 0 rgba(234, 90, 90, 0.4);
    }
    70% {
        box-shadow: 0 0 0 6px rgba(234, 90, 90, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(234, 90, 90, 0);
    }
}

.row-group {
    display: flex;
    gap: 20px;
    width: 100%;
}

.col-phone {
    flex: 0 0 300px;
}

.col-auto {
    flex-grow: 1;
}

.slide-block {
    max-height: 5000px;
    opacity: 1;
    overflow: visible;
    transition: all 0.5s ease-in-out;
}

.slide-block.closed {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.custom-check-label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    font-size: 15px;
    user-select: none;
    margin-right: 20px;
}

.custom-check-input {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
    margin-right: 10px;
    background: #fff;
    flex-shrink: 0;
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.custom-check-input:checked {
    background-color: #EA5A5A;
    border-color: #EA5A5A;
}

.custom-check-input:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 11px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.radio-group-line {
    display: flex;
    gap: 30px;
    margin-bottom: 15px;
}

.address-details {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 15px;
}

.options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 50px;
    margin-top: 10px;
}

.checkout-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    background: #fafafa;
    padding: 25px 30px;
    border-radius: 8px;
}

.footer-btn-back {
    background: #fff;
    color: #555;
    border: 1px solid #ddd;
    padding: 12px 30px;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s;
}

.footer-btn-back:hover {
    background: #f0f0f0;
}

.footer-middle {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 40px;
    font-size: 14px;
    line-height: 1.5;
    color: #555;
}

.footer-middle span {
    color: #000;
    font-weight: 700;
    font-size: 15px;
    margin-left: 8px;
}

.footer-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.total-price {
    font-size: 22px;
    font-weight: 800;
    white-space: nowrap;
    margin-right: 10px;
}

.pay-btn {
    background: #EA5A5A;
    color: #fff;
    border: none;
    height: 48px;
    padding: 0 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.2s;
    box-shadow: 0 4px 10px rgba(234, 90, 90, 0.3);
}

.pay-btn:disabled,.pay-btn:disabled:hover {
    cursor: wait;
    background-color: #f28d8d; /* Бледный основной цвет */
    background-image: linear-gradient(
            45deg,
            rgba(255, 255, 255, 0.2) 25%,
            transparent 25%,
            transparent 50%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 75%,
            transparent
    );
    background-size: 40px 40px; /* Размер полосок */
    animation: stripe-move 1s linear infinite;
    box-shadow: none;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes stripe-move {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 40px 0;
    }
}

.pay-btn:hover {
    background: #d64545;
}

.agreement-footer {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
}

.agreement-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: default;
}

.agreement-label span {
    font-size: 12px;
    color: #999;
    line-height: 1.2;
}

.agreement-checkbox {
    accent-color: #999;
    cursor: not-allowed;
    width: 16px;
    height: 16px;
    margin: 0;
}

@media (max-width: 992px) {
    .form-grid-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .grid-label {
        text-align: left;
        padding-top: 0;
        margin-bottom: 5px;
    }

    .row-group {
        flex-direction: column;
        gap: 15px;
    }

    .col-phone {
        flex: auto;
    }

    .address-details {
        grid-template-columns: 1fr 1fr;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .checkout-footer {
        flex-direction: column-reverse;
        padding: 20px;
    }

    .footer-middle {
        align-items: space-between;
        padding-right: 0;
        margin-bottom: 20px;
        border-bottom: 1px dashed #ddd;
        padding-bottom: 15px;
        width: 100%;
    }

    .footer-right {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }

    .footer-right select, .footer-right button {
        width: 100%;
    }

    .footer-btn-back {
        width: 100%;
        text-align: center;
    }

    .agreement-footer {
        justify-content: center;
        text-align: center;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#postcards_list {
    width: 100%;
}

.postcard-row {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px dashed #eee;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

.postcard-label {
    width: 140px;
    flex-shrink: 0;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
    text-align: left;
    padding-top: 0;
}

.postcard-image-placeholder {
    width: 150px;
    height: 120px;
    flex-shrink: 0;
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.postcard-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.postcard-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.postcard-content textarea {
    width: 100%;
    height: 120px !important;
    resize: none;
}

.postcard-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.postcard-content textarea {
    width: 100%;
    resize: vertical;
}

.btn-add-postcard {
    background-color: #5cb85c;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: 0.2s;
    display: inline-block;
}

.btn-add-postcard:hover {
    background-color: #4cae4c;
}

.btn-remove-postcard {
    background-color: #d9534f;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s;
}

.btn-remove-postcard:hover {
    background-color: #c9302c;
}

@media (max-width: 768px) {
    .postcard-row {
        flex-direction: column;
        gap: 15px;
    }

    .postcard-label {
        width: 100%;
        margin-bottom: 5px;
        text-align: left;
    }

    .postcard-image-placeholder {
        width: 100%;
        max-width: 150px;
        height: 150px;
    }

    .postcard-content {
        width: 100%;
        align-items: stretch;
    }
}

@media (max-width: 768px) {

    .checkout-wrapper {
        padding: 20px 15px;
    }

    h2.checkout-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .row-group {
        flex-direction: column;
        align-items: stretch !important;
        gap: 10px;
    }

    .row-group > div {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
        text-align: left;
    }

    .row-group > div:nth-child(2) {
        font-size: 13px;
        color: #888;
        font-weight: 500;
        margin-top: 5px;
        margin-bottom: -5px;
        display: block;
    }

    .row-group > div:last-child {
        margin-top: 5px;
        font-size: 12px;
        line-height: 1.4;
    }

    .form-grid-container {
        row-gap: 20px;
    }
}

.main-advantages .wrapper {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    gap: 80px;
    align-items: center;
}

.main-advantages__item {
    display: flex;
    align-items: center;
    width: auto;
    margin: 0;
}

.main-advantages__icon {
    font-size: 30px;
    color: #e84a5f;
    margin-right: 15px;
    min-width: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
}

.main-advantages__item-text {
    font-size: 14px;
    line-height: 1.35;
    color: #333;
    font-weight: 600;
}

@media (max-width: 1024px) {
    .main-advantages .wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .main-advantages .wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .main-advantages__item {
        border-bottom: 1px solid #f5f5f5;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .main-advantages__item:last-child {
        border-bottom: none;
        margin-bottom: 0;
        padding-bottom: 0;
    }
}

.contacts-section {
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: transparent;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-wrapper {
    width: 100%;
    height: 400px;
    background-color: #f0f0f0;
    margin-bottom: 40px;
    overflow: hidden;
    border-radius: 8px;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #f2525d, #ff9a9e);
}

.card-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #333;
    position: relative;
    padding-bottom: 15px;
}


.card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #f2525d, #ff9a9e);
}

.company-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    font-size: 0.95rem;
    color: #555;
}

.details-list li span {
    font-weight: 600;
    color: #333;
}

.address-block {
    font-style: normal;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}

.contact-link {
    text-decoration: none;
    color: #333;
    transition: opacity 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    opacity: 0.7;
}

.email-link,
.phone-link {
    font-weight: 700;
    color: #f2525d;
    display: inline-block;
    text-decoration: none;
}


.email-link:hover,
.phone-link:hover {
    color: #ff9a9e;
}

.phone-group {
    margin-bottom: 15px;
}

.phone-group .label {
    display: block;
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 2px;
}

.phone-link {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .map-wrapper {
        height: 300px;
    }

    .info-card {
        padding: 20px;
    }
}

.legal-page-wrapper {
    background-color: #fffbfb;
    padding: 40px 0;
    min-height: 600px;
}

.legal-document {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    max-width: 960px;
    margin: 0 auto;
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

.legal-document h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #000;
    line-height: 1.2;
}

.legal-document .date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
    display: block;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.legal-document h2 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #222;
    position: relative;
    padding-left: 15px;
}

.legal-document h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(to bottom, #f2525d, #ff9a9e);
    border-radius: 2px;
}

.legal-document p {
    margin-bottom: 15px;
    text-align: justify;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

.legal-document li {
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .legal-document {
        padding: 20px;
    }

    .legal-document h1 {
        font-size: 24px;
    }
}

.address-block {
    display: block;
    font-style: normal;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed #e0e0e0;
}


.address-block p {
    margin-bottom: 5px;
}

.info-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(242, 82, 93, 0.08);
    position: relative;
    height: 100%;
}

.sticky-cart-node {
    width: 0 !important;
    height: 0 !important;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
}

.sticky-cart-node.is-visible {
    opacity: 1;
    visibility: visible;
    overflow: visible;

    width: 50px !important;
    height: 50px !important;
    position: relative !important;
    margin: -10px 0 -10px 20px !important;
    background: transparent !important;
    border: none !important;
}

.sticky-cart-node .header__buttons-item__link {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    background-position: center !important;
    background-repeat: no-repeat;
    background-size: 26px !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sticky-cart-node .cart-items-count {
    position: absolute !important;
    top: 6px !important;
    right: 6px !important;
    margin: 0 !important;
    z-index: 15;
}


@media screen and (max-width: 1520px) {
    .cart > .wrapper.favorite {
        -ms-grid-columns: auto 30px;
        grid-template-columns: auto;
        grid-gap: 32px 30px;
    }
}

.wrapper.favorite .cart-preview__item {
    padding: 8px;
    border-radius: 4px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 88px 16px 1fr 16px 100px 177px 16px 20px;
    grid-template-columns: 88px 1fr 100px 177px 20px;
    gap: 16px;
    align-items: center;
    transition: background .3s ease;
}

.simple-slider {

}

.simple-slider.small-slider > .wrapper > .swiper-container > .swiper-wrapper > .swiper-slide {
    max-width: 130px;
}

.simple-slider.small-slider .catalog-content__cards .card, .simple-slider.small-slider .card {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 5px;
}

.simple-slider.small-slider .card__slider {
    margin-bottom: 0px;
}

.simple-slider.small-slider .card__title {
    font-size: 12px;
}

.simple-slider.small-slider .card {
    grid-gap: 5px 5px;
}

.simple-slider.small-slider .card .card__articul {
    font-size: 12px;
}

.simple-slider.small-slider .card .cart-btn {
    padding: 0px 5px 0px 0px;
    height: 30px;
}

.simple-slider.small-slider .wrapper {
    padding: 0px;
    max-width: unset;
}

.simple-slider.small-slider .section__title {
    margin-bottom: 10px;
    margin-top: 15px !important;
}

.product__total {
    grid-column: unset;
    -ms-grid-row: unset;
    grid-row: unset;
}

.product_right_column {
    grid-column: 9 / 12;
    -ms-grid-row: 1;
    grid-row: 1;
}

.product__info {
    grid-column: unset !important;
}

.product__settings {
    padding: 0 18px;
}


@media (max-width: 768px) {
    .header {
        position: sticky;
        top: 0;
        background: #fff;
    }
}

@media screen and (max-width: 900px) {
    .footer__nav-title + .footer__nav-list {
        max-height: unset;
        margin-top: 15px;
    }
}

.sale-0 {
    display: none
}

.blog__wrapper {
    -ms-grid-columns: auto 40px;
    grid-template-columns: auto;
}

@media screen and (max-width: 1520px) {
    .blog__wrapper {
        -ms-grid-columns: auto 30px;
        grid-template-columns: auto;
    }
}

.cart__item-buttons--favorite[data-favorite-btn="add"]::after {
    content: "В избранное";
}

.cart__item-buttons--favorite[data-favorite-btn="remove"]::after {
    content: "В избранном";
}

.cart-preview__item-del {
    cursor: pointer
}

#bonuses_info {
    padding: 16px;
    line-height: 1;
    text-wrap-mode: nowrap;
    color: #000;
    text-align: right;
}

.client_name {
    display: flex;
}

@media (max-width: 768px) {
    .client_name {
        display: block;
    }
}