.cart-empty {
    display: flex;
    justify-content: space-between;
}

.cart-empty:after {
    content: attr(data-text);
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 128px;
    line-height: 1.25;
    color: #000;
    opacity: .2;
    max-width: calc(100% - 600px);
    width: 100%;
    min-width: 510px;
    text-align: center;
}

.cart-empty p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 1.25;
    color: #000;
    max-width: 590px;
    width: 100%;
}

.cart-empty .catalog {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.25;
    text-align: center;
    color: var(--main-color-white);
    border-radius: 50px;
    padding: 15px 46px;
    background-color: var(--main-color-red);
    display: inline-flex;
    margin: 100px auto 40px;
    position: relative;
    align-items: center;
    box-shadow: 0 0 0 0 rgba(38, 38, 38, 0.5);
    transition: box-shadow .3s;
}

.cart-empty .catalog:before {
    content: '';
    margin-right: 10px;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.78309 2.71745C7.85301 2.78713 7.90849 2.86992 7.94635 2.96109C7.9842 3.05225 8.00369 3.14999 8.00369 3.2487C8.00369 3.34741 7.9842 3.44515 7.94635 3.53631C7.90849 3.62748 7.85301 3.71027 7.78309 3.77995L4.56497 6.99807L13.7525 6.99808C13.9514 6.99808 14.1421 7.07709 14.2828 7.21775C14.4235 7.3584 14.5025 7.54916 14.5025 7.74808C14.5025 7.94699 14.4235 8.13775 14.2828 8.27841C14.1421 8.41906 13.9514 8.49808 13.7525 8.49808L4.56497 8.49807L7.78309 11.7174C7.92399 11.8583 8.00314 12.0494 8.00314 12.2487C8.00314 12.448 7.92399 12.6391 7.78309 12.7799C7.6422 12.9208 7.4511 13 7.25184 13C7.05258 13 6.86149 12.9208 6.72059 12.7799L2.22059 8.27995C2.15067 8.21027 2.09519 8.12748 2.05734 8.03631C2.01949 7.94515 2 7.84741 2 7.7487C2 7.64999 2.01949 7.55225 2.05734 7.46108C2.09519 7.36992 2.15067 7.28713 2.22059 7.21745L6.72059 2.71745C6.79027 2.64753 6.87307 2.59205 6.96423 2.5542C7.05539 2.51634 7.15313 2.49686 7.25184 2.49686C7.35055 2.49686 7.44829 2.51634 7.53946 2.5542C7.63062 2.59205 7.71342 2.64753 7.78309 2.71745Z' fill='white'/%3E%3C/svg%3E%0A");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
    width: 16px;
    height: 16px;
}

.cart-empty .catalog:hover {
    box-shadow: 0 8px 16px -8px rgba(38, 38, 38, 0.5);
}

@media (min-width: 960px) {
    .cart-empty {
        min-height: 500px;
    }
}

@media (max-width: 959px) {
    .cart-empty {
        flex-direction: column;
    }

    .cart-empty .catalog {
        margin: 60px auto;
    }

    .cart-empty:after {
        max-width: 100%;
        min-width: unset;
        margin-bottom: 60px;
    }
}

@media (max-width: 639px) {
    .cart-empty:after {
        font-size: 69px;
    }

    .cart-empty .catalog {
        display: table;
    }
}