.drawer-cross-sell {
    margin: 18px 0 16px;
    padding: 14px;
    background: #f7f5f2;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 6px;
}

.drawer-cross-sell__header {
    display: grid;
    grid-template-columns: 24px 1fr 24px;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 14px;
}

.drawer-cross-sell__title {
    font-size: 18px;
    line-height: 1.2;
    font-weight: 400;
    color: #232323;
    text-align: center;
}

.drawer-cross-sell__arrow {
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #4a4a4a;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: none;
}

.drawer-cross-sell__arrow-icon {
    font-size: 18px;
    line-height: 1;
}

.drawer-cross-sell__arrow--disabled {
    opacity: .35;
    pointer-events: none;
}

.drawer-cross-sell__viewport {
    overflow: hidden;
    width: 100%;
}

.drawer-cross-sell__track {
    display: flex;
    width: 100%;
    transition: transform .35s ease;
    will-change: transform;
}

.drawer-cross-sell__slide {
    flex: 0 0 100%;
    width: 100%;
}

.drawer-cross-sell__card {
    background: transparent;
}

.drawer-cross-sell__body {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: start;
}

.drawer-cross-sell__image-link {
    display: block;
    width: 86px;
    text-decoration: none;
}

.drawer-cross-sell__image {
    display: block;
    width: 86px;
    height: 86px;
    object-fit: contain;
    background: #fff;
    border-radius: 2px;
}

.drawer-cross-sell__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    min-width: 0;
}

.drawer-cross-sell__name {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    color: #2b2b2b;
    text-decoration: none;
    word-break: break-word;
}

.drawer-cross-sell__name:hover {
    opacity: .8;
}

.drawer-cross-sell__price {
    font-size: 14px;
    line-height: 1.35;
    color: #3f3f3f;
}

.drawer-cross-sell__price del {
    color: #8d8d8d;
    opacity: .9;
    margin-right: 6px;
}

.drawer-cross-sell__price ins {
    text-decoration: none;
    color: #d11f1f;
    font-weight: 600;
}

.drawer-cross-sell__price .woocommerce-price-suffix {
    display: inline;
    font-size: 12px;
    color: #7e7e7e;
    margin-left: 4px;
}


.drawer-cross-sell__button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;

    padding: 0 14px;
    border: 1px solid #2c2c2c !important;
    background: #fff !important;
    color: #1f1f1f !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 500;
    line-height: 1;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: all .2s ease;
   padding: 6px 14px !important;
    width: fit-content;

    min-height: auto!important;
}

.drawer-cross-sell__button:hover {
    background: #2c2c2c !important;
    color: #fff !important;
}

.drawer-cross-sell + .woocommerce-mini-cart__total,
.drawer-cross-sell + p.woocommerce-mini-cart__total {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.drawer-cross-sell--single .drawer-cross-sell__arrow {
    opacity: .35;
    pointer-events: none;
}

.drawer-cross-sell__price del .amount {
    color: #8d8d8d!important;
}
.drawer-cross-sell__price ins .amount {
    color: red!important;
}


.drawer-cross-sell__price .woocommerce-price-suffix {
    display: inline;
    font-size: 12px;
    color: #7e7e7e;
    margin-left: 4px;
    display: none !important;
}

@media (max-width: 380px) {
    .drawer-cross-sell {
        padding: 12px;
    }

    .drawer-cross-sell__body {
        grid-template-columns: 78px 1fr;
        gap: 12px;
    }

    .drawer-cross-sell__image-link,
    .drawer-cross-sell__image {
        width: 78px;
        height: 78px;
    }

    .drawer-cross-sell__title {
        font-size: 17px;
    }

    .drawer-cross-sell__name {
        font-size: 14px;
    }

    .drawer-cross-sell__price {
        font-size: 13px;
    }
}