.cart__summary {
    margin-block: 56px 64px;

    font-size: 32px;
    line-height: 40px;
    font-weight: 600;
    color: var(--black);
}

.cart__info-wrap {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    width: 100%;
}

.cart__info-product {
    display: flex;
    gap: 64px;
}

.cart__info-product__image {
    min-width: 240px;
    min-height: 240px;
    max-width: 240px;
    max-height: 240px;
    border-radius: 20px;
    background-color: var(--gray1);
    object-fit: cover;
}

.cart__info-product__image.empty {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 240px;
    height: 240px;
    box-shadow: var(--default-box-shadow);
    border-radius: 20px;
}

.cart__info-product__field {
    display: flex;
    gap: 16px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    color: var(--black);
}

.cart__info-product__field span {
    color: var(--gray3);
}

.cart__info-payment {
    display: flex;
    flex-direction: column;
    gap: 64px;
    max-width: 360px;
}

.cart__info-decoration {
    display: flex;
    flex-direction: column;
    gap: 24px;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
}

.cart__info-decoration > div {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cart__checkout-wrap {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.cart__checkout-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

@media screen and (max-width: 992px) {
    .cart__info-wrap {
        flex-direction: column;
        gap: 64px;
    }

    .cart__summary {
        font-size: 24px;
        line-height: 32px;
    }

    .cart__info-product {
        gap: 32px;
    }

    .cart__info-product__field, .cart__info-decoration {
        font-size: 16px;
        line-height: 24px;
    }

    .cart__info-payment {
        gap: 32px;
        max-width: 100%;
    }
}

@media screen and (max-width: 633px) {
    .cart__info-product {
        gap: 16px;
    }

    .cart__info-product__image {
        min-width: 180px;
        min-height: 180px;
        max-width: 180px;
        max-height: 180px;
    }

    .cart__info-product__field {
        flex-direction: column;
        gap: 0;
    }
}

@media screen and (max-width: 450px) {
    .cart__info-product__image {
        min-width: 120px;
        min-height: 120px;
        max-width: 120px;
        max-height: 120px;
    }
}