.wrapper-payment {
    padding: 0 0 70px 0;
}

.wrapper-payment h2{
    margin: 24px 0;
}

.pay-methods__wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(328px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}


.pay-methods-item {
    padding: 24px 32px 16px 24px;
    background-color: #f6f6f7;    
    border-radius: 12px;
}

.pay-methods-item__image {
    width: 64px;
    height: 64px;
    border-radius: 6px;
    object-fit: cover;
    margin-bottom: 63px;
}

.pay-methods-item__title {
    margin-bottom: 24px;
}

.pay-methods-item__description {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: #28313d;
}

.section-description-list {    
    max-width: 832px;
    padding-left: 24px;
}

.section-description-list li {
    list-style: disc;
    padding-left: 20px;
}
.section-description-list li:not(:last-child) {
    margin-bottom: 24px;
}

@media(max-width: 1024px) {
    .pay-methods__wrapper {
        grid-template-columns: repeat(2, 1fr);
        margin-bottom: 36px;
    }

    .section-description-list li {
        padding-left: 15px;
    }
}

@media(max-width: 550px) {
    .pay-methods__wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 24px; 
        margin-bottom: 24px;
    }

    .pay-methods-item__image {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }

    .pay-methods-item__title {
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;
        margin-bottom: 12px;
    }

    .pay-methods-item__description {
        font-size: 12px;
        line-height: 130%;
    }

    .wrapper-payment .title-h1 {
        margin-bottom: 24px;
    }

    .section-description-list li {
        padding-left: 8px;
    }
}

/* Оплата и доставка */

.wrapper-payment .category-description {
    margin: unset;
}

table, th, td {
    border: 0;
    border-collapse: collapse;
}



.delivery-table {
    font-size: 18px;
    width: 792px;
    max-width: 100%;
    margin-bottom: 32px;
}

.delivery-table td {
    padding: 10px 8px;
}

.delivery-table th {
    text-align: left;
}

.delivery-table th:last-child {
    text-align: right;
}

.delivery-table td:last-child {
    text-align: right;
}

.delivery-table tr:nth-child(even) {
    background-color: rgba(98%, 82%, 10%);
}


