.delivery-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.delivery-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}


    .delivery-row.active {
        background: #f8f9fa;
    }


.payment-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-row {
    padding: 16px;
    border: 1px solid #dee2e6;
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}



    .payment-row.active {
        background: #f8f9fa;
    }
